/**
 * Estilos de Registro - Repositorio ColMed
 * public/css/registro.css
 */

body.registro-page {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.register-container {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 420px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
}

.back-link:hover {
    color: #1e3a5f;
    text-decoration: none;
}

.register-container h1 {
    color: #1e3a5f;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.register-container .subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 32px;
}

.google-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.google-info .info {
    flex: 1;
}

.google-info .name {
    font-weight: 600;
    color: #166534;
}

.google-info .email {
    font-size: 13px;
    color: #15803d;
}

.steps {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.steps h4 {
    font-size: 13px;
    color: #475569;
    margin-bottom: 12px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

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

.step-number {
    width: 24px;
    height: 24px;
    background: #1e3a5f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-number.done {
    background: #16a34a;
}

.step-text {
    font-size: 13px;
    color: #64748b;
    line-height: 24px;
}

.login-link {
    text-align: center;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

.login-link a {
    color: #1e3a5f;
    font-weight: 600;
}
