﻿/* LOGIN WRAPPER */
.login-wrapper {
    width: 100%;
    max-width: 430px;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient( 145deg, rgba(255,255,255,.05), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(212,175,55,.08);
}

/* LOGO */
.login-logo {
    max-width: 220px;
    width: 100%;
}

/* TITLE */
.login-title {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #AFAFAF;
    font-size: .95rem;
}

/* LABELS */
.login-label {
    color: #EAEAEA;
    font-weight: 600;
    margin-bottom: 10px;
}

/* INPUTS */
.custom-input {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    height: 55px;
    border-radius: 16px;
    padding: 0 20px;
}

    .custom-input::placeholder {
        color: #999;
    }

    .custom-input:focus {
        background: rgba(255,255,255,.06);
        color: white;
        border-color: #D4AF37;
        box-shadow: 0 0 15px rgba(212,175,55,.15);
    }

/* PASSWORD BUTTON */
.password-toggle-btn {
    position: absolute;
    top: 48px;
    right: 14px;
    border: none;
    background: transparent;
    color: #D4AF37;
    font-size: .9rem;
    font-weight: 600;
}

/* LOGIN BUTTON */
.btn-login {
    background: #D4AF37;
    color: #0B0B0D;
    height: 55px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: .3s;
}

    .btn-login:hover {
        background: #e5c558;
        transform: translateY(-2px);
    }

/* LINKS */
.login-link {
    color: #CFCFCF;
    text-decoration: none;
}

    .login-link:hover {
        color: #D4AF37;
    }

.signup-link {
    font-weight: 700;
}

/* MOBILE */
@media(max-width:768px) {

    .login-wrapper {
        padding: 28px;
    }

    .login-logo {
        max-width: 180px;
    }
}
/* MOBILE HAMBURGER */
.navbar-toggler {
    border: 1px solid rgba(212,175,55,.20) !important;
    border-radius: 14px;
    padding: 8px 10px;
    background: rgba(255,255,255,.03);
}

/* WHITE ICON */
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* HOVER */
.navbar-toggler:hover {
    border-color: rgba(212,175,55,.55) !important;
    box-shadow: 0 0 18px rgba(212,175,55,.18);
    background: rgba(212,175,55,.08);
}

/* CLICK */
.navbar-toggler:focus {
    box-shadow: 0 0 0 .15rem rgba(212,175,55,.22) !important;
}
/* TABLET */
@media (max-width: 991px) {

    .hero-content-wrapper {
        padding: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .left-zone {
        min-height: auto;
    }

    .login-zone {
        padding: 30px 20px;
    }

    .login-card {
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .login-zone {
        padding: 20px 15px;
        min-height: auto;
    }

    .login-card {
        padding: 24px;
        border-radius: 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }
}

.login-section-divider {
    width: 80%;
    height: 1px;
    margin: 22px auto 20px;
    background: linear-gradient( to right, transparent, rgba(212, 175, 55, 0.45), transparent );
}

/* ABOUT WRAPPER */
.about-wrapper {
    width: 100%;
    /* max-width: 420px; */
}

/* TITLE */
.about-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-subtitle {
    color: #BDBDBD;
    font-size: .9rem;
}

/* CARD */
.about-card {
    background: linear-gradient( 145deg, rgba(255,255,255,.04), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 18px;
}

/* HEADINGS */
.about-heading {
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.about-text {
    color: #D3D3D3;
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* FEATURES */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .feature-list li {
        color: #D3D3D3;
        margin-bottom: 10px;
        font-size: .92rem;
    }

/* MOBILE */
@@media (max-width:576px) {

    .about-card {
        padding: 15px;
    }

    .about-text,
    .feature-list li {
        font-size: .85rem;
    }
}
/* LOGO */
.login-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@@media (max-width: 576px) {

    .login-logo {
        max-width: 140px;
    }
}

/* OUTLINE GOLD BUTTON */
.btn-outline-gold {
    border: 1px solid #D4AF37;
    color: #D4AF37 !important;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all .3s ease;
}

    /* HOVER */
    .btn-outline-gold:hover {
        background: #D4AF37;
        color: #111111 !important;
        border-color: #D4AF37;
        transform: translateY(-2px);
        box-shadow: 0 0 15px rgba(212,175,55,.18);
    }

    /* FOCUS */
    .btn-outline-gold:focus,
    .btn-outline-gold:active {
        background: #D4AF37 !important;
        color: #111111 !important;
        border-color: #D4AF37 !important;
        box-shadow: 0 0 0 .15rem rgba(212,175,55,.25);
    }
/* RIGHT LOGIN */
.login-zone {
    padding-top: 1px !important;
}