body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.container{
   box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.325);
   padding: 30px;
   border-radius: 10px;
   width: fit-content;
   text-align: center;
   display: grid;
   gap: 20px;
}
.account-selection{
    display: grid;
    gap: 30px;
}
.account a{
    border: 1px solid #1cb555;
    padding: 12px 40px;
    border-radius: 10px;
    cursor: pointer;
}
.account:first-child a{
    color: #1cb555;
    background-color: white;
}
.account:last-child a{
    background-color: #1cb555;
    color: white;
}
.or::before, .or::after{
          content: '     -------------------     ';
          opacity: 0.3;
}
@media  screen and (max-width:767px) {
    .container h1{
        font-size: 1.5em;
    }
}