body{
    background-color: black;
    display: flex;
    justify-content: center;
}
.login-box{
    text-align: center;
    
}
#set{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 40px;
    width: 280px;
    height: 300px;
    border: 1px solid white;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px white;
}
#set a , #set-signup a{ 
    color: rgb(239, 119, 139);
    font-size: large;
}
#set a:hover, #set-signup a:hover{
    text-shadow: 0px 0px 15px rgb(239, 119, 139);
}
#set-signup{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 40px;
    width: 300px;
    height: 400px;
    border: 1px solid white;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px white;
}
#login{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#set:hover{
    box-shadow: 0px 0px 10px 0px skyblue;
}
input{
    padding: 15px;
    width: 240px;
    border: none;
    border-radius: 10px;
}
button{
    width: 270px;
    border: none;
    border-radius: 10px;
    padding: 13px;
    background-color: skyblue;
    font-size: large;
}
button:hover{
    background-color: rgb(132, 150, 238);
}