body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('../img/bg_login.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.overlay {
    position: fixed;
    inset: 0;
    background: #ffffff33;
    pointer-events: none;
    z-index: 0;
}

.login {
    background: #F4F4F4B3;
    margin: 0 auto;
    width: 650px;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.content {
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.logo {
    padding-top: 60px;
    padding-bottom: 32px;
}

.logo img {
    width: 100%;
    display: block;
    object-fit: contain;
    height: 216px;
}

.title {
    margin-bottom: 16px;
}

.title p {
    color: #156082;
    text-align: center;
    font: 700 2rem/1.25 'Newsreader', sans-serif;
    margin: 0;
    padding: 0;
}

.form_login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 400px;
    padding-left: 40px;
    padding-right: 40px;
}

.form_login div label,
.form_login div input {
    display: block;
    width: 400px;
}

label {
    padding-bottom: 5px;
    color: #2E2E2E;
    font-family: 'Roboto', sans-serif;
}

input {
    padding: 10px;
    border: 1px solid #156082;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #2E2E2E;
}

.btn_login {
    padding: 20px 40px;
    border-radius: 8px;
    background: linear-gradient(180deg, #0F9ED5 0%, #156082 100%);
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    border: none;
    display: inline-block;
    margin-top: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn_login:hover {
    background: linear-gradient(90deg, #156082 0%, #0F9ED5 100%);
    scale: 1.02;
}

.other_options_login {
    text-align: center;
    margin-bottom: 40px;
}

.other_options_login a {
    color: #595959;
    padding-bottom: 5px;
    display: inline-block;
}

.other_options_login a:hover {
    text-decoration: underline;
    color: #0F9ED5;
}

.copy {
    font: 300 1rem/1.5 'Roboto', sans-serif;
    color: #595959;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 700px) {
    .login {
        width: 90%;
    }

    .logo {
        padding-top: 20px;
    }

    .logo img {
        height: 150px;
    }
}

@media (max-width: 500px) {

    .form_login div input,
    .form_login div label {
        width: 80%;
    }

    .form_login div {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .title p {
        font-size: 1.75rem;
    }

    .btn_login {
        padding: 15px 30px;
    }

    .copy {
        font-size: 0.9375rem;
    }
}

@media (max-width: 400px) {
    .form_login {
        width: 300px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .title p {
        font-size: 1.5rem;
    }
}