@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}
.main-wrapper {
    height: 100vh;
    background-image: url("/frontend/images/bg.png");
    background-size: 100% 120%;
    background-repeat: no-repeat;
}

.emblem {
    width: 300px;
}

.header {
    color: #fff;
}

.main-wrapper .login-btn {
    background-color: #262262;
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

.main-wrapper .login-btn:hover {
    background-color: #262262;
    opacity: 0.85;
    transition: 0.5s all;
}

.form-emblem {
    width: 100px;
}

.form-header {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
}

.form-wrapper.row {
    --bs-gutter-x: 0;
    min-height: 74vh;
}

.form-wrapper .form {
    background: linear-gradient(
        180deg,
        rgba(170, 170, 170, 0.08) 100%,
        rgba(0, 0, 0, 0.0064) 0%
    );
    backdrop-filter: blur(4px);
    border-radius: 18px;
    padding: 1.5rem 2rem;
}

.form-wrapper .form label {
    color: white;
    margin-bottom: 8px;
}

.icon {
    color: #496bad;
}

.form .input-group-addon {
    padding: 10px;
    background-color: #e8f0fe;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.form .form-control {
    background-color: #e8f0fe;
}
.form .form-control:focus {
    box-shadow: none;
}

.login-form p {
    color: rgba(255, 255, 255, 0.5);
}

.login-form .company {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.login-form .company:hover {
    color: #fff;
    opacity: 0.8;
}

.form .input-group-addon.password-eye {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

@media only screen and (max-width: 450px) {
    .form-wrapper .form {
        padding: 1.5rem;
    }

    .form-wrapper .form label {
        color: white;
        margin-bottom: 5px;
    }
    .login-form p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }
    .form-header {
        position: absolute;
        left: 20%;
        right: 0;
    }
    .login-form img {
        position: relative;
        left: 12%;
        right: 0;
    }
}

@media only screen and (max-width: 400px) {
    .form-header {
        position: absolute;
        left: 28%;
        right: 0;
    }
    .login-form img {
        position: relative;
        left: 10%;
        right: 0;
    }
}

@media only screen and (max-width: 350px) {
    .form-header {
        position: absolute;
        left: 30%;
        right: 0;
    }
    .login-form img {
        position: relative;
        left: 5%;
        right: 0;
    }
}
