@font-face {
    font-family: 'PPObjectSans-Regular';
    src: url('../fonts/PPObjectSans-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'PPObjectSans-Bold';
    src: url('../fonts/PPObjectSans-Bold.otf') format('truetype');
}

body {
    font-family: 'PPObjectSans-Regular';
    height: 100vh;
    background-image: url('../img/img-bg-login.png');
    background-size: cover;
    background-position: center;
}

nav {
    opacity: 1;
    backdrop-filter: blur(12px);
}

main {
    display: flex;
    align-items: center;
    height: calc(100% - 62px);
}

p {
    font-family: 'PPObjectSans-Regular';
    color:#ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.gx-btn-primary {
    font-family: 'PPObjectSans-Bold';
    color: rgb(21, 21, 21);
    background-color: rgb(0, 255, 127);
    font-size: 15px;
    font-weight: 700;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(0, 255, 127);
    border-image: initial;
    border-radius: 8px;
    transition: none;
    padding: 10px 15px;
    text-decoration: none;
}

.gx-btn-primary:hover {
    background-color: rgb(0, 240, 120);
    color: rgb(21, 21, 21);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(0, 240, 120);
    border-image: initial;
    text-decoration: none;
}

.box-login {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #E6E7E9;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;

    h1 {
        font-family: 'PPObjectSans-Bold';
        font-size: 34px;
        font-weight: 700;
        line-height: 40px;
        color: #000000;
        margin-bottom: 30px;

        span {
            color: #00FF7F;
        }
    }
}

footer {
    opacity: 1;
    backdrop-filter: blur(12px);
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
}

a {
    font-family: 'PPObjectSans-Regular';
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;

    &:hover {
        text-decoration: underline;
        cursor: pointer;
    }
}

.btn-log {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #E6E7E9;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    color: #232E3C;
    text-decoration: none;

    img {
        margin-right: 10px;
    }

    &:hover {
        background-color: #E6E7E9;
        color: #232E3C;
        text-decoration: none;
    }
}


@media screen and (max-width: 450px) {
    .box-login {
        width: 90%;
        padding: 30px;
    }

    h1 {
        font-size: 24px !important;
        line-height: 28px !important;
    }
}