/* Social circle buttons – Login & Register */
.auth-social-circles {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.auth-btn-social-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    padding: 0;
    border: 1.5px solid #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.auth-btn-social-circle:hover {
    opacity: 0.85;
}

.auth-social-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Password field with toggle icon positioned inside */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-control {
    padding-right: 2.75rem;
}

.password-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6c757d;
    display: flex;
    align-items: center;
    line-height: 1;
}

.password-toggle-btn:focus {
    outline: none;
}

/* Uniform font size for all form inputs in Register */
#registerForm .form-control {
    font-size: 0.9375rem;
}

/* Override Bootstrap's fixed height on selects to prevent text clipping */
#registerForm select.form-control {
    height: auto;
}

/* Phone verification radio options */
.auth-verificacion-opciones {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.auth-radio-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-radio-item input[type="radio"] {
    cursor: pointer;
}

.auth-verificacion-label {
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
}

/* Plan cards - lateral section in Login & Register */
.auth-plan-card {
    background: #fff;
}

.auth-plan-card small {
    line-height: 1.4;
    font-size: 0.8125rem;
}

/* Submit and plan buttons – rounded */
.btn-rounded-25 {
    border-radius: 25px !important;
}

.btn-auth-plan {
    border-radius: 25px !important;
}
