﻿/* LOGIN WRAPPER */
.login-wrapper {
    width: 100%;
    max-width: 430px;
    padding: 40px;
    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;
    }
}