#home{
    display: flex;
    background: #f5f5f5;
    height: 100vh;
}

#home .alertbox{
    width: 220px;
    height: 50px;
    background: darkred;
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 5s;
}

#home #alertbox.fade {
    opacity: 0;
}

#home .center-box .logo{text-align: center;}

#home .center-box{
    margin: auto;
    width: 500px;
    height: 300px;
}

#home h3,
#home h4{
    text-align: center;
    color: #000000;
}

#home .center-box .form form{
    display: flex;
    flex-direction: column;
}

#home .center-box .form form label{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto 10px;
}

#home .center-box .form form button{
    width: 80%;
    margin: 10px auto 0;
}