body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
}

/* Layout */
.main-container {
    display: flex;
    height: 100vh;
}

/* LEFT */
.left-panel {
    width: 50%;
    background: linear-gradient(135deg, #2c7be5, #00c6a9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.branding {
    max-width: 400px;
}

.logo {
    width: 120px;
    margin-bottom: 15px;
}

h1 {
    margin: 0;
}

.subtitle {
    margin: 10px 0 20px;
    opacity: 0.9;
}

.features div {
    margin: 8px 0;
    font-size: 15px;
}

.cta {
    margin-top: 20px;
    font-weight: bold;
}

/* RIGHT */
.right-panel {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 350px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease;
}

.form {
    display: none;
    flex-direction: column;
}

.form.active {
    display: flex;
    animation: slideIn 0.4s ease;
}

input {
    margin: 10px 0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

input:focus {
    border-color: #2c7be5;
    outline: none;
}

button {
    padding: 12px;
    background: #2c7be5;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #1a5edb;
}

.link {
    margin-top: 10px;
    font-size: 14px;
    color: #2c7be5;
    cursor: pointer;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Animaciones */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 940px) {
    .left-panel{
        display: none;
    }
    .right-panel{
        width: 100%;
    }
}

.terms-container {
    margin: 10px 0 15px 0;
    font-size: 13px;
}

.check-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.link-inline {
    color: #00bcd4;
    text-decoration: underline;
    cursor: pointer;
}


.plan-selector {
    margin-bottom: 15px;
}

.plan-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.plan-box strong {
    display: block;
    font-size: 14px;
}

.plan-box p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

#changePlanBtn {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
}

.modal-2fa{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
     background: rgba(15, 23, 42, 0.35) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

    display:none;
    justify-content:center;
    align-items:center;
    z-index:9;
}

    .modal-2fa p {
        font-size: 13px;
        color: rgba(0, 0, 0, .6);
    }

.modal-2fa .modal-content{
    background:#fff;
    padding:30px;
    border-radius:10px;
    width:350px;
    text-align:center;
    margin: 5em auto;
}