/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Banner styles */
.banner {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo-top-left img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
}

.logo-top-right img {
    width: 40px;
    height: 40px;
}

.banner-title {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

/* Language selector */
.language-selector {
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-weight: 300;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.language-selector span {
    margin: 0 12px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.language-selector span:hover {
    color: #333;
}

.language-selector span.active {
    color: #000;
    font-weight: 400;
}

/* Progress steps */
.progress-steps {
    display: flex;
    align-items: center;
    padding: 20px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 20px;
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.step.active {
    color: #333;
    font-weight: bold;
}

.step-number {
    margin-right: 5px;
    font-weight: bold;
}

.step:not(:last-child)::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #e9ecef;
    margin-left: 10px;
}

/* Main content */
.main-content {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.verification-section {
    text-align: center;
    max-width: 500px;
}

.verify-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.verify-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.verify-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.verify-btn:hover {
    background-color: #333;
}

/* Form styles */
.verification-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #000;
}

/* Success section */
.success-section {
    text-align: center;
    max-width: 500px;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #28a745;
}

.success-message {
    font-size: 1.1rem;
    color: #666;
}

/* Error section */
.error-section {
    text-align: center;
    max-width: 500px;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #dc3545;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.back-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #333;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 20px;
    text-align: left;
    border-top: 1px solid #e9ecef;
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

.footer p {
    margin: 5px 0;
    font-weight: 300;
}

/* Responsive design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 1.5rem;
    }
    
    .progress-steps {
        padding: 15px 0;
        overflow-x: auto;
    }
    
    .step {
        margin: 0 15px;
        font-size: 12px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .verification-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .main-content {
        padding: 20px;
    }
}
