body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    background-image: url(../../pictures/background.svg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}
body * {
    margin: 0;
}
form{
    background-color: rgba(255, 255, 255, 0.80);
    padding: 16px;
    border-radius: 13.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 16px;
    text-align: center;
}
img{
    width: 200px;
}
input{
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 16px;
    border: none;
    border-radius: 13.5px;
    font-size: 16px;
    font-weight: 500;
}
button{
    background-color: #ff8700;
    border: none;
    border-radius: 13.5px;
    padding: 16px;
    width: 100%;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.error_flash_card{
    border-radius: 13.5px;
    border-bottom: 3px solid red;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: white;
    width: 80%;
    padding: 16px;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    display: flex;
    align-items: center;
    animation-name: flash_card;
    animation-duration: 0.4s;
    display: none;
}
.error_flash_card > p{
    padding: 0 16px;
    font-size: 16px;
}
.error_flash_card > img:first-child{
    width: 32px;
    height: 32px;
}
.error_flash_card > img:last-child{
    width: 14px;
    height: 14px;
    cursor: pointer;
}
@keyframes flash_card{
    from{top: -10%;}
    to{top: 5%;}
}
@media(min-width: 800px){
    .error_flash_card{
        width: auto;
    }
    form{
        min-width: 400px;
    }
}