#wrapper_unauthorized {
    width: 100%;
    height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-unauthorized {
    width: 595px;
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding-top: 72px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.box-unauthorized .image-unauthorized {
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
}

.box-unauthorized h1 {
    width: 319px;
    margin: 20px auto 14px auto;
    font-family: Montserrat;
    font-weight: 800;
    font-size: 24px;
    color: #112556;
    text-align: center;
}

.box-unauthorized p {
    width: 390px;
    margin: 0 auto 56px auto;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.5px;
    color: #5E5E5E;
    text-align: center;
}

.box-unauthorized .login-unauthorized {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 320px;
    height: 48px;
    line-height: 48px;
    background: #FF8D24;
    border-radius: 10px;
    color: #FFFFFF;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
}

.box-unauthorized .login-unauthorized:hover {
    text-decoration: none;
}

@media (max-width: 660px) {
    .box-unauthorized {
        width: 88%;
    }
    
    .box-unauthorized h1, .box-unauthorized p, .box-unauthorized .login-unauthorized {
        width: 83%;
    }

    .box-unauthorized h1 {
        font-size: 20px;
    }

    .box-unauthorized p, .box-unauthorized .login-unauthorized{
        font-size: 15px;
    }
}