﻿/* ========================================
   Landing Page Styles (Index.cshtml)
   ======================================== */

.divider {
    display: none;
}
/* Oculto en tu nuevo diseño */

.center-selector {
    justify-content: center !important;
}

.type-selector {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.type-btn {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 0;
    text-align: center;
    border-radius: var(--ft-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

    .type-btn.active, .type-btn:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: #ffffff !important;
        color: #ffffff;
    }

    .type-btn:active {
        transform: scale(0.98);
    }

.input-field {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    border-radius: var(--ft-radius);
    border: none;
    background: white;
    outline: none;
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: 13px;
    color: #e0e0e0;
}

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-container a {
        color: var(--ft-accent);
        text-decoration: none;
        font-weight: 500;
    }

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--ft-border);
    border-radius: 5px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--ft-accent);
    border-color: var(--ft-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.form-actions-right, .form-actions {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
}

.login-text {
    font-size: 13px;
    margin-bottom: 15px;
}

.inline-form {
    display: flex;
    gap: 10px;
}

@media (max-width: 850px) {
    .forms-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}
