.register-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.register-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.register-box h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.register-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group select {
    cursor: pointer;
}

/* Password Requirements Styles */
.password-requirements {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.requirement:last-child {
    margin-bottom: 0;
}

.requirement-icon {
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.requirement.met {
    color: #059669;
}

.requirement.met .requirement-icon {
    color: #059669;
}

.requirement.not-met {
    color: #dc2626;
}

.requirement.not-met .requirement-icon {
    color: #dc2626;
}

/* Password input validation states */
.form-group input[type="password"].valid {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group input[type="password"].invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-group {
    margin-bottom: 2rem;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkbox-label a {
    color: #0066cc;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.login-link {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.login-link span {
    color: #6b7280;
    margin-right: 0.5rem;
}

.login-btn-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-btn-link:hover {
    color: #004999;
}

@media (max-width: 600px) {
    .register-container {
        padding: 1rem;
    }
    
    .register-box {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .logo {
        height: 50px;
    }
    
    .register-box h2 {
        font-size: 1.5rem;
    }
}