body{
    background-color: #1d499c;
}

.logo img{
    max-width: 250px;
}

.steps{
    color: white;
}

.steps .step .actions{
    display: flex;
    flex-direction: column;
    gap: 30px;    
    width: 300px;
    align-items: center;
}

@media (max-width: 375px) {
    .steps .step .actions{
        width: 100%;
    }
}

.btn-border{
    padding: 12px 0;
    width: 100%;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: color .3s ease-in, background .3s ease-in;
}

.btn-border:hover{
    text-decoration: none;
    color: #1d499c;
    background-color: white;
}

.step[data-active]{
    display: block;
}

.step{
    display: none
}