.scfv-registro-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.scfv-registro-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
}

.scfv-row {
    display: flex;
    margin: 0 -10px;
}

.scfv-col-6 {
    flex: 0 0 50%;
    padding: 0 10px;
}

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

.scfv-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 14px;
}

.scfv-form-group input:not([type="checkbox"]),
.scfv-form-group select {
    width: 100%;
    height: 45px;
    padding: 0 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.scfv-form-group input:focus,
.scfv-form-group select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
    outline: none;
}

.scfv-form-group input::placeholder {
    color: #666;
}

#scfv-registro-form .scfv-iti {
    width: 100% !important;
}

#scfv-registro-form .scfv-form-group .scfv-iti input {
    width: 100%;
    height: 45px;
    padding-left: 85px !important;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 15px;
}

#scfv-registro-form .scfv-iti__flag-container {
    z-index: 99;
}

#scfv-registro-form .scfv-iti__country-list {
    z-index: 999;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

#scfv-registro-form .scfv-iti__selected-flag {
    height: 43px;
    padding: 0 6px 0 8px;
    background-color: transparent !important;
    border-radius: 7px 0 0 7px;
}

#scfv-registro-form .scfv-iti__flag {
    margin-right: 5px;
}

#scfv-registro-form .scfv-iti__selected-dial-code {
    margin-left: 3px;
    color: #333;
}

#scfv-registro-form .scfv-iti__country {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    min-height: 35px;
}

#scfv-registro-form .scfv-iti__country:hover {
    background-color: rgba(0,0,0,0.05);
}

#scfv-registro-form .scfv-iti__country-name {
    margin-right: 6px;
    font-size: 14px;
}

#scfv-registro-form .scfv-iti__dial-code {
    color: #666;
    font-size: 13px;
}

.scfv-registro-form .scfv-registro-button {
    width: 100%;
    height: 45px;
    padding: 12px 20px;
    background-color: #0099de !important;
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.scfv-registro-form .scfv-registro-button:hover {
    background-color: #007ab1 !important;
    color: #ffffff !important;
}

.scfv-registro-form .scfv-registro-button:active {
    transform: translateY(1px);
}

.scfv-terms-service,
.scfv-lodpd-service {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.scfv-terms-service input[type="checkbox"],
.scfv-lodpd-service input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #0099de;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin: 0;
}

.scfv-terms-service input[type="checkbox"]:checked,
.scfv-lodpd-service input[type="checkbox"]:checked {
    background-color: #0099de;
}

.scfv-terms-service input[type="checkbox"]:checked::after,
.scfv-lodpd-service input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    left: 4px;
    top: -1px;
}

.scfv-terms-service label,
.scfv-lodpd-service label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.scfv-terms-service a,
.scfv-lodpd-service a {
    color: #0099de;
    text-decoration: none;
    font-weight: 500;
}

.scfv-terms-service a:hover,
.scfv-lodpd-service a:hover {
    text-decoration: underline;
}

.scfv-login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.scfv-login-link a {
    color: #2271b1;
    text-decoration: none;
}

.scfv-login-link a:hover {
    text-decoration: underline;
}

/* Ajuste responsive para el teléfono */
@media (max-width: 576px) {
    #scfv-registro-form .scfv-iti__country-list {
        width: 280px;
        left: 0;
    }
    
    .scfv-row {
        flex-direction: column;
    }

    .scfv-col-6 {
        flex: 0 0 100%;
        padding: 0;
    }
}

/* Estilos para validación de campos */
.scfv-form-group input.error,
.scfv-form-group select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Deshabilitar input */
.scfv-form-group input:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0099de;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: #007ab1;
}

.password-strength-meter {
    margin-top: 8px;
}

.meter-bar {
    height: 4px;
    border-radius: 2px;
    background: #e6e6e6;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.meter-bar.very-weak { width: 20%; background: #ff4d4d; }
.meter-bar.weak { width: 40%; background: #ffa64d; }
.meter-bar.medium { width: 60%; background: #ffd700; }
.meter-bar.strong { width: 80%; background: #90ee90; }
.meter-bar.very-strong { width: 100%; background: #32cd32; }

.meter-text {
    font-size: 12px;
    color: #666;
}
