body.auth-page {
    position: relative;
    min-height: 100vh;

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

    padding: 40px;

    background:
        linear-gradient(rgba(10, 15, 35, 0.72),
            rgba(10, 15, 35, 0.72)),
        url('../images/pinguin.png') center/cover no-repeat;

    overflow: hidden;

    color: white;
}

/* =========================
   CONTAINER
========================= */

body.auth-page .container {
    position: relative;

    width: 100%;
    max-width: 1100px;
    min-height: 650px;

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

    padding: 40px;

    border-radius: 28px;

    background:
        linear-gradient(rgba(12, 20, 45, 0.55),
            rgba(12, 20, 45, 0.55)),
        url('../images/pinguin.png') center/cover no-repeat;



    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);

    overflow: hidden;
}

body.auth-page {
    background:
        linear-gradient(rgba(8, 12, 30, 0.45),
            rgba(8, 12, 30, 0.55)),
        url('../../images/pinguin.png') center center / cover no-repeat fixed;
}

/* =========================
   LOGO
========================= */

body.auth-page .container-logo {
    position: absolute;

    top: 30px;
    left: 30px;

    z-index: 10;
}

body.auth-page .container-logo img {
    width: 170px;
    height: auto;
}

/* =========================
   FORM BOX
========================= */

body.auth-page .form-box {
    width: 100%;
    max-width: 430px;

    padding: 3rem;

    border-radius: 24px;

    background: rgba(15, 20, 40, 0.78);

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

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35);

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

    z-index: 5;
}

/* =========================
   TITLES
========================= */

.main-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: white;
}

.auth-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-align: center;
}

/* =========================
   FORM
========================= */

.auth-field {
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.auth-input {
    width: 100%;

    padding: 1rem 1rem 1rem 3rem;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.15);

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

    color: white;

    outline: none;

    transition: 0.2s;
}

.auth-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.auth-icon {
    position: absolute;

    left: 1rem;
    top: 50%;

    transform: translateY(-50%);

    opacity: 0.7;
}

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

.btn-primary-gradient {
    width: 100%;

    border: none;

    padding: 1rem;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #7c3aed,
            #d946ef);

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
}

/* =========================
   LINKS
========================= */

.auth-link,
.auth-forgot,
.auth-remember {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.auth-link a,
.auth-forgot a {
    color: #d8b4fe;
    text-decoration: none;
}

.auth-link a:hover,
.auth-forgot a:hover {
    text-decoration: underline;
}

body.auth-page form {
    width: 100%;
}

body.auth-page .auth-field {
    width: 100%;
    margin-bottom: 1rem;
}

body.auth-page input[type="email"],
body.auth-page input[type="password"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.auth-page button {
    width: 100%;
}

.auth-form {
    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    body.auth-page {
        padding: 20px;
    }

    body.auth-page .container {
        padding:
            120px 20px 40px;

        min-height: auto;
    }

    body.auth-page .container-logo {
        left: 50%;
        transform: translateX(-50%);
    }

    body.auth-page .container-logo img {
        width: 150px;
    }

    body.auth-page .form-box {
        padding: 2rem 1.5rem;
    }
}