@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow: hidden;
    background: #07111f;
}

.bg-overlay {
    position: fixed;
    inset: 0;

    background:
        linear-gradient(rgba(4, 13, 26, .75),
            rgba(4, 13, 26, .85)),
        url('/assets/images/back.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: 70px;
    color: white;
}

.logo {
    width: 260px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-content span {
    color: #c8a96d;
}

.hero-content p {
    margin-top: 25px;
    font-size: 1.15rem;
    opacity: .85;
}

.services {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-card {
    width: 180px;
    height: 100px;

    backdrop-filter: blur(15px);

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 20px;

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

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c8a96d;
}

.service-card i {
    font-size: 2rem;
    color: #c8a96d;
}

.service-card span {
    color: white;
    margin-top: 10px;
}

.login-card {

    width: min(480px, 100%);

    backdrop-filter: blur(25px);

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 30px;

    padding: 45px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);

    position: relative;
    z-index: 2;
}

.login-logo {
    width: 210px;
    margin-bottom: 20px;
}

.login-card h2 {
    color: white;
    font-weight: 700;
}

.login-card p {
    color: #b7c0ca;
}

.form-label {
    color: white;
}

.input-group-text {
    background: #101c2c;
    border: none;
    color: #c8a96d;
}

.form-control {
    height: 56px;
    border: none;
    background: #101c2c;
    color: white;
}

.form-control:focus {
    background: #101c2c;
    color: white;
    box-shadow: none;
}






.input-group input::placeholder {
    color: rgb(253, 253, 253);
    opacity: 0.5;
}

.btn-password {
    background: #101c2c;
    color: #c8a96d;
}

.btn-login {
    height: 58px;

    border: none;

    background:
        linear-gradient(135deg,
            #d7bc88,
            #b99254);

    color: #fff;

    font-weight: 600;
    font-size: 1.1rem;

    border-radius: 15px;

    transition: .3s;
}

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

.bottom-info {
    text-align: center;
    margin-top: 25px;
    color: #95a0ac;
}




.floating-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.c1 {
    width: 350px;
    height: 350px;
    background: #c8a96d;
    top: -100px;
    right: -100px;
    opacity: .25;
}

.c2 {
    width: 250px;
    height: 250px;
    background: #214c88;
    bottom: 100px;
    left: -50px;
    opacity: .25;
}

.c3 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    bottom: -100px;
    right: 200px;
    opacity: .08;
}







/* =========================
   TABLETA
========================= */

@media (max-width: 992px) {

    body {
        overflow: auto;
    }

    .bg-overlay {
        position: fixed;
    }

    .hero-content {
        display: none;
    }

    .login-card {
        width: 90%;
        max-width: 500px;
        margin: 40px auto;
    }

    .container-fluid,
    .row {
        min-height: 100vh;
    }

}

/* =========================
   TELEFON
========================= */

@media (max-width: 768px) {

    .col-lg-5 {
        padding: 20px;
    }

    .login-card {
        width: 100%;
        padding: 30px 25px;
        border-radius: 25px;
    }

    .login-logo {
        width: 180px;
    }

    .login-card h2 {
        font-size: 1.5rem;
    }

    .login-card p {
        font-size: .9rem;
    }

    .form-control {
        height: 52px;
        font-size: .95rem;
    }

    .input-group-text {
        padding: 0 15px;
    }

    .btn-login {
        height: 54px;
        font-size: 1rem;
    }

    .floating-circle {
        display: none;
    }

}

/* =========================
   TELEFOANE MICI
========================= */

@media (max-width: 480px) {

    .login-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .login-logo {
        width: 150px;
        margin-bottom: 15px;
    }

    .login-card h2 {
        font-size: 1.3rem;
    }

    .form-label {
        font-size: .9rem;
    }

    .form-control {
        height: 48px;
        font-size: .9rem;
    }

    .btn-login {
        height: 50px;
        font-size: .95rem;
    }

    .bottom-info {
        font-size: .8rem;
    }

}

/* =========================
   LANDSCAPE TELEFON
========================= */

@media (max-height: 700px) {

    body {
        overflow: auto;
    }

    .login-card {
        margin: 20px auto;
        padding: 25px;
    }

    .login-logo {
        width: 170px;
        margin-bottom: 10px;
    }

    .login-card h2 {
        margin-bottom: 5px;
    }

}