﻿body {
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 25%), var(--my-body-bg);
    min-height: 100vh;
    font-family: "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}

.auth-wrapper {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06), 0 2px 10px rgba(15,23,42,0.04);
}

.card.auth-card {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 2px 10px rgba(15, 23, 42, 0.04);
}

.auth-left {
    color: white;
    padding: 60px;
    height: 100%;
    position: relative;
}

    .auth-left.signIn {
        background: linear-gradient( 145deg, #1e3a8a, #2563eb );
    }

    .auth-left.signUp {
        background: linear-gradient( 145deg, #111827, #1f2937 );
    }

.logo-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.left-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.left-subtitle {
    opacity: 0.88;
    line-height: 1.8;
    font-size: 15px;
    max-width: 420px;
}

.info-box {
    margin-top: 25px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 14px;
}

.info-list {
    margin-top: 45px;
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-icon-lg {
    width: 70px;
    height: 70px;
    font-size: 28px;
}

.info-icon.signIn {
    background: rgba(255,255,255,0.12);
}

.info-icon.signUp {
    background: rgba(255,255,255,0.08);
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-text {
    opacity: 0.82;
    font-size: 14px;
    line-height: 1.6;
}

.auth-right {
    padding: 55px;
}

.top-switch {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.switch-link {
    font-size: 14px;
    color: #6b7280;
}

    .switch-link a {
        text-decoration: none;
        color: #2563eb;
        font-weight: 600;
    }

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.7;
}

.form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dbe1ea;
    padding-left: 15px;
}

    .form-control:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
    }

.input-group-text {
    border-radius: 12px;
    border: 1px solid #dbe1ea;
    background: #fff;
}

.btn {
    border-radius: 12px;
    transition: 0.2s;
}

.btn-auth {
    height: 52px;
    border: none;
    border-radius: 12px;
    /*background: #2563eb;*/
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-auth:hover {
        /*background: #1d4ed8 !important;*/
        color: #ffffff;
    }

.btn-register {
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-register:hover {
        background: #1d4ed8;
    }

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 14px;
}

    .auth-links a {
        text-decoration: none;
        color: #2563eb;
    }

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #9ca3af;
    font-size: 13px;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }

    .divider span {
        padding: 0 12px;
    }

.btn-light-custom,
.btn-light-custom:hover{
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dbe1ea;
    background: white;
    font-weight: 600;
    line-height: var(--my-btn-line-height);
}

.password-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.terms {
    margin-top: 22px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

    .terms a {
        text-decoration: none;
        color: #2563eb;
    }

@media(max-width:991px) {

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 35px 25px;
    }
}


.bg-soft-secondary {
    background: #dbeafe;
    color: #2563eb;
}

.small {
    margin-top: 25px;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}
