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


html,body{
    padding: 0;
    margin: 0;
    overflow: hidden;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;


}
.logo{
    width: 150px;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.message{
    padding-top:3vh;
    font-family: Ubuntu;
    font-weight: bold;
    font-size: 1.6em;
}

.btn{
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 420;
    color: #fff;
    background-color: #E95420;
    border: 1px solid #E95420;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn:hover{
    background-color: #c7431a;
    border-color: #c7431a;
}


.btn:active{
    background-color: #a33615;
    border-color: #a33615;
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
