/* =========================================================
   APPLICANT LOGIN CSS
   Unicorn Innovation Hill Limited
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #050505;
    color: #ffffff;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

header {
    position: relative;
    z-index: 1000;
}

.navbar {
    width: 100%;
    min-height: 80px;

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

    padding: 12px 6%;

    background:
        linear-gradient(
            135deg,
            #050505,
            #111111,
            #050505
        );

    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.6);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;
}

.logo-circle {
    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    color: #050505;

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

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f5e6a8,
            #b8860b
        );

    box-shadow:
        0 0 15px rgba(212, 175, 55, 0.35);
}

.logo-text h2 {
    font-size: 16px;
    line-height: 1.1;

    color: #ffffff;
}

.logo-text p {
    margin-top: 3px;

    font-size: 12px;

    color: #d4af37;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;

    list-style: none;
}

.nav-links a {
    position: relative;

    color: #dddddd;

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

    transition:
        color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #d4af37;

    transition:
        width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* HAMBURGER */

.hamburger {
    display: none;

    width: 35px;

    cursor: pointer;
}

.hamburger span {
    display: block;

    width: 100%;
    height: 3px;

    margin: 6px 0;

    background: #d4af37;

    border-radius: 10px;

    transition: 0.3s;
}


/* =========================================================
   LOGIN HERO
========================================================= */

.login-hero {
    position: relative;

    min-height: 330px;

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

    text-align: center;

    padding: 60px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.10),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #050505,
            #111111,
            #030303
        );
}


/* GOLD GLOW */

.login-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.12),
            transparent 70%
        );

    filter: blur(20px);
}


/* HERO CONTENT */

.login-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}

.login-content span {
    display: inline-block;

    margin-bottom: 15px;

    color: #d4af37;

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

    letter-spacing: 3px;
}

.login-content h1 {
    margin-bottom: 18px;

    font-size: clamp(36px, 6vw, 60px);

    font-weight: 800;

    line-height: 1.1;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #d4af37,
            #ffffff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-content p {
    max-width: 700px;

    margin: auto;

    color: #bdbdbd;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   LOGIN SECTION
========================================================= */

.login-section {
    position: relative;

    padding: 90px 6%;

    background:
        linear-gradient(
            135deg,
            #050505,
            #0b0b0b,
            #030303
        );
}

.login-container {
    width: 100%;
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT INFORMATION
========================================================= */

.login-info span {
    display: inline-block;

    margin-bottom: 15px;

    color: #d4af37;

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

    letter-spacing: 2px;
}

.login-info h2 {
    margin-bottom: 20px;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.2;

    color: #ffffff;
}

.login-info p {
    max-width: 570px;

    margin-bottom: 30px;

    color: #aaa;

    font-size: 15px;

    line-height: 1.9;
}

.login-info ul {
    list-style: none;
}

.login-info li {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 17px;

    color: #dddddd;

    font-size: 14px;
}

.login-info li i {
    color: #d4af37;

    font-size: 17px;
}


/* =========================================================
   LOGIN CARD
========================================================= */

.login-card {
    position: relative;

    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #111111,
            #080808,
            #121212
        );

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.login-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;

    width: 80%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d4af37,
            transparent
        );
}

.login-card h2 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 28px;
}

.login-subtitle {
    margin-bottom: 30px;

    color: #888;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   INPUT BOX
========================================================= */

.input-box {
    position: relative;

    margin-bottom: 22px;
}

.input-box label {
    display: block;

    margin-bottom: 8px;

    color: #dddddd;

    font-size: 13px;
    font-weight: 500;
}

.input-box input {
    width: 100%;

    height: 52px;

    padding: 0 16px;

    color: #ffffff;

    background: #050505;

    border: 1px solid #2b2b2b;

    border-radius: 8px;

    outline: none;

    font-size: 14px;

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

.input-box input::placeholder {
    color: #666;
}

.input-box input:focus {
    border-color: #d4af37;

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.08);
}


/* =========================================================
   PASSWORD
========================================================= */

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 52px;
}

.toggle-password {
    position: absolute;

    top: 50%;
    right: 17px;

    transform: translateY(-50%);

    color: #888;

    font-size: 16px;

    cursor: pointer;

    transition:
        color 0.3s ease;
}

.toggle-password:hover {
    color: #d4af37;
}


/* =========================================================
   REMEMBER / FORGOT PASSWORD
========================================================= */

.remember {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin: 5px 0 25px;
}

.remember label {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #999;

    font-size: 12px;

    cursor: pointer;
}

.remember input {
    accent-color: #d4af37;

    cursor: pointer;
}

.remember a {
    color: #d4af37;

    font-size: 12px;

    transition:
        color 0.3s ease;
}

.remember a:hover {
    color: #ffffff;
}


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

.login-btn {
    width: 100%;

    min-height: 52px;

    display: flex;

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

    padding: 12px 20px;

    border: none;

    border-radius: 8px;

    color: #050505;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f1dc82,
            #b8860b
        );

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

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(212, 175, 55, 0.3);
}

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

.login-btn:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}


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

.login-message {
    min-height: 20px;

    margin-top: 12px;

    text-align: center;

    color: #d4af37;

    font-size: 12px;
}


/* =========================================================
   DIVIDER
========================================================= */

.divider {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 25px 0;

    color: #666;

    font-size: 11px;
}

.divider::before,
.divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #282828;
}


/* =========================================================
   SOCIAL LOGIN
========================================================= */

.social-login {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}

.social-btn {
    min-height: 46px;

    display: flex;

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

    gap: 9px;

    border: 1px solid #2d2d2d;

    border-radius: 8px;

    color: #dddddd;

    background: #090909;

    font-size: 12px;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.social-btn:hover {
    border-color: #d4af37;

    color: #d4af37;

    background: #111111;
}


/* =========================================================
   REGISTER LINK
========================================================= */

.register-link {
    margin-top: 25px;

    text-align: center;

    color: #777;

    font-size: 12px;
}

.register-link a {
    color: #d4af37;

    font-weight: 600;
}

.register-link a:hover {
    color: #ffffff;
}


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

.footer {
    padding: 70px 6% 20px;

    background:
        #030303;

    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 45px;
}

.footer-box h3 {
    margin-bottom: 20px;

    color: #d4af37;

    font-size: 16px;
}

.footer-box > p {
    color: #888;

    font-size: 12px;

    line-height: 1.8;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #888;

    font-size: 12px;

    transition:
        color 0.3s ease;
}

.footer-box ul li a:hover {
    color: #d4af37;
}


/* FOOTER LOGO */

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.footer-logo-circle {
    width: 45px;
    height: 45px;

    display: flex;

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

    border-radius: 50%;

    color: #050505;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f1dc82,
            #b8860b
        );
}

.footer-logo h2 {
    color: #ffffff;

    font-size: 15px;
}

.footer-logo p {
    color: #d4af37;

    font-size: 11px;
}


/* FOOTER CONTACT */

.footer-box > p {
    margin-bottom: 12px;
}

.footer-box > p i {
    width: 20px;

    margin-right: 5px;

    color: #d4af37;
}


/* SOCIAL ICONS */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 18px;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: flex;

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

    border: 1px solid #292929;

    border-radius: 50%;

    color: #999;

    font-size: 13px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-social a:hover {
    color: #d4af37;

    border-color: #d4af37;

    transform: translateY(-2px);
}


/* FOOTER BOTTOM */

.footer hr {
    max-width: 1250px;

    margin: 45px auto 20px;

    border: none;

    border-top: 1px solid #1d1d1d;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #555;

    font-size: 11px;
}


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

@media (max-width: 992px) {

    .nav-links {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        padding: 15px 0;

        background: #080808;

        border-bottom:
            1px solid rgba(212, 175, 55, 0.2);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 13px 6%;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .login-container {
        grid-template-columns: 1fr;

        max-width: 750px;

        gap: 50px;
    }

    .login-info {
        text-align: center;
    }

    .login-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .login-info li {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 700px) {

    .navbar {
        padding: 12px 5%;
    }

    .logo-text h2 {
        font-size: 14px;
    }

    .login-hero {
        min-height: 290px;

        padding: 50px 20px;
    }

    .login-content h1 {
        font-size: 38px;
    }

    .login-content p {
        font-size: 13px;
    }

    .login-section {
        padding: 65px 5%;
    }

    .login-card {
        padding: 30px 25px;
    }

    .login-info h2 {
        font-size: 32px;
    }

    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 500px) {

    .logo-circle {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .logo-text h2 {
        font-size: 12px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .login-hero {
        min-height: 270px;
    }

    .login-content span {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .login-content h1 {
        font-size: 32px;
    }

    .login-content p {
        font-size: 12px;

        line-height: 1.7;
    }

    .login-section {
        padding: 50px 4%;
    }

    .login-card {
        padding: 25px 18px;

        border-radius: 14px;
    }

    .login-card h2 {
        font-size: 24px;
    }

    .login-info h2 {
        font-size: 27px;
    }

    .login-info p {
        font-size: 13px;
    }

    .login-info li {
        justify-content: flex-start;

        font-size: 12px;
    }

    .remember {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .social-login {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer {
        text-align: left;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .login-card {
        padding: 22px 15px;
    }

    .login-content h1 {
        font-size: 28px;
    }

    .login-info h2 {
        font-size: 24px;
    }

    .input-box input {
        height: 48px;
    }

    .login-btn {
        min-height: 48px;
    }
}