*,*::after,::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.login{
    height: 80vh;
    background-color: #10397B;
}
.login__container{
    height: 80vh;
    padding: 2rem !important;
    display: flex;
    justify-content: center;
    align-items: center
}
.login__title{
    color: #ffffff;
    font-size: 55px;
    font-weight: 400;
}

.login-button__container{
    display: flex;
    justify-content: center;
}
.login__actions{
    border: 3px solid #000000;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    height: 250px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.login-button__buttons{
    text-decoration: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    background-color: #2C2C2C;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.login-button__buttons:hover{
    color: #ffffff;
}

@media (max-width:500px) {
    .login__actions{
        flex-direction: column;
    }
    .login-button__buttons{
        width: 100%;
        text-align: center;
    }
}


