/* Register Page Styles */

.register-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.register-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-icon {
    font-size: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.register-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.register-subtitle {
    color: #6b7280;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-card {
        padding: 30px;
    }
}

.login-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.login-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-box p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
}

.info-box i {
    color: #667eea;
    margin-right: 8px;
}

.password-strength {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.password-strength.weak {
    color: #ef4444;
    display: block;
}

.password-strength.medium {
    color: #f59e0b;
    display: block;
}

.password-strength.strong {
    color: #10b981;
    display: block;
}

.invalid-feedback {
    font-size: 11px !important;
    font-style: italic;
    color: #dc3545 !important;
}

.tooltip-icon {
    color: #6b7280;
    cursor: help;
    margin-left: 5px;
    font-size: 14px;
}

.tooltip-icon:hover {
    color: #667eea;
}
