/* =====================================================
   LOGIN PAGE
   ===================================================== */

.login-screen {
    width: 100%;
    min-height: 100vh;

    position: relative;

    background: #f8fafc;
    overflow: hidden;
}


/* =====================================================
   LEFT IMAGE
   ===================================================== */

.login-visual {
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;
}

.login-visual img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}

/* Tagline */

.login-tagline {
    position: absolute;

    left: 6%;
    bottom: 8%;

    max-width: 650px;

    padding: 0;

    background: none;
    border-radius: 0;

    z-index: 2;
}

.login-tagline h1 {
    margin: 10px 0 5px;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;

    color: #ffffff;

    text-shadow:
        0 2px 8px rgba(0,0,0,.8);
}

.login-tagline p {
    margin: 0;

    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;

    color: #ffffff;

    text-shadow:
        0 2px 10px rgba(0,0,0,.9);
}

.tagline-main {
    margin-top: 10px;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;

    color: #ffffff;

    text-shadow:
        0 2px 10px rgba(0,0,0,.85);
}

.tagline-highlight {
    margin-top: 3px;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;

    color: #ffffff;

    text-shadow:
        0 2px 12px rgba(0,0,0,.95);
}


/* Small badge above tagline */

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;

    background: rgba(10, 10, 25, 0.55);

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.tagline-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ec4899;

    box-shadow:
        0 0 0 4px rgba(236, 72, 153, 0.20);
}


/* =====================================================
   RIGHT LOGIN AREA
   ===================================================== */

.login-panel {
    position: absolute;

    top: 50%;
    left: 62%;

    transform: translateY(-50%);

    width: 430px;
    min-height: 560px;
    max-height: 92vh;

    padding: 50px 45px;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.18);

    z-index: 10;

    box-sizing: border-box;

    overflow-y: auto;
}

.login-content {
    width: 100%;
    max-width: none;
}

.login-panel-content {
    padding: 45px 42px;
}


/* =====================================================
   BRAND
   ===================================================== */

.login-brand {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 38px;
}

.brand-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: linear-gradient(
        135deg,
        #f43f5e,
        #9333ea
    );

    color: white;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 6px 18px rgba(236, 72, 153, 0.25);
}

.brand-name {
    display: flex;
    flex-direction: column;

    gap: 0;

    line-height: 1;
}

.brand-safe {
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #475569;
}

.brand-women {
    margin-top: 5px;

    font-size: 26px;
    font-weight: 850;

    letter-spacing: 1px;

    background: linear-gradient(
        90deg,
        #f43f5e,
        #ec4899,
        #9333ea
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =====================================================
   TITLE
   ===================================================== */

.login-content h1 {
    margin: 0 0 20px;

    font-size: 38px;
    font-weight: 600;

    color: #111827;
}

.login-description {
    margin: 0 0 38px;

    max-width: 390px;

    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}


/* =====================================================
   INPUTS
   ===================================================== */

.polar-field {
    margin-bottom: 28px;
}

.polar-field label {
    display: block;

    margin-bottom: 7px;

    color: #64748b;
    font-size: 14px;
}

.polar-field label span {
    color: #f43f5e;
}

.polar-field input {
    width: 100%;
    height: 46px;

    padding: 0 4px;

    border: none;
    border-bottom: 1px solid #cbd5e1;

    border-radius: 0;

    outline: none;

    background: transparent;

    color: #111827;
    font-size: 16px;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.polar-field input:focus {
    border-bottom-color: #f43f5e;

    box-shadow:
        0 1px 0 #f43f5e;
}


/* =====================================================
   LOGIN OPTIONS
   ===================================================== */
.login-options
{
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 26px 0 30px;
}


/* =====================================================
   REMEMBER ME
   ===================================================== */
.remember-me
{
    display: flex;

    align-items: center;

    gap: 10px;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;
}

.remember-me input
{
    width: 18px;
    height: 18px;

    margin: 0;

    cursor: pointer;

    flex-shrink: 0;
}


/* =====================================================
   FORGET PASSWORD
   ===================================================== */
.forgot-password-link
{
    font-size: 13px;

    font-weight: 500;

    color: #64748b;

    text-decoration: none;

    transition: all .25s ease;
}

.forgot-password-link:hover
{
    color: #7c3aed;

    text-decoration: underline;
}

.forgot-password-link:active
{
    color: #be185d;
}


/* =====================================================
   LOGIN BUTTON
   ===================================================== */

.login-submit {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 24px;

    background: linear-gradient(
        90deg,
        #f43f5e,
        #ec4899,
        #9333ea
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.login-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(236, 72, 153, 0.22);
}

.login-submit:active {
    transform: translateY(0);
}


/* =====================================================
   MESSAGE
   ===================================================== */

.login-message {
    margin-top: 18px;

    min-height: 20px;

    text-align: center;

    color: #ef4444;
    font-size: 13px;
}


/* =====================================================
   FOOTER
   ===================================================== */

.login-footer {
    text-align: center;
    color: #64748b;
    font-weight: 500;
}

/* =====================================================
   Style the Create Account button
   =====================================================*/
.create-account-section {
    margin-top: 22px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: #64748b;
    font-size: 13px;
}

.create-account-btn {
    width: 100%;
    height: 44px;

    border: 1px solid #d8dee8;
    border-radius: 22px;

    background: transparent;

    color: #334155;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.create-account-btn:hover {
    border-color: #ec4899;

    color: #ec4899;

    background: rgba(236, 72, 153, 0.04);
}


/*======================================================
  Registration view styling
  ======================================================*/
.back-login-btn {
    padding: 0;
    margin: 0 0 22px;

    border: none;
    background: transparent;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.back-login-btn:hover {
    color: #ec4899;
}

.register-submit {
    margin-top: 10px;
}

.hidden {
    display: none !important;
}
