/*Style pour login et register pages */
body{
    background: rgb(253,224,191);
    background: radial-gradient(circle, rgba(251,133,0,1) 0%, rgba(255,255,255,1) 35%, rgba(0,195,250,1) 100%);
}
#login, #app{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8%;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}
.title{
    width: 130%;
    background-color: #FFB703;
    box-shadow: #888 2px 2px 3px 2px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-4deg);
}
.title p{
    text-align: center;
    color: #f8f9fa;
    padding: 0 10px;
    box-sizing: border-box;
}
.overlay{
    background-color: #f8f9fa;
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    padding: 40px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    box-shadow: #888 2px 2px 3px 2px;
}
.overlay a{
    font-size: small;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
form div {
    width: 100%;
}
.input_info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
}
form button {
    width: 100%;
    background-color: #ffb703;
    border: solid 2px #ffb703;
    box-sizing: border-box;
    padding: 10px 30px;
    border-radius: 20px;
}
form button:hover{
    border: solid 2px #fb8500;
}