/*body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    margin: 8px;
}
.wrapper{
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
}
.heading{
    height: 10vh;
    margin: 0;
    position: absolute;
    top: 12px;
    width: 100%;
}
form{
    max-width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
    padding: 24px;
    width: 80%;
    border: 1px solid black;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
form *{
    margin: 0;
}
.input_field{
    padding: 8px;
    border: 1px solid black;
    border-radius: 12px;
}
.submit_button{
    padding: 16px;
    border: none;
    border-radius: 12px;
    background-color: #ff8700;
    font-weight: bold;
}*/
body,html{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    overflow-x: hidden;
    height: 100dvh;
    background-image: url(../../pictures/background.svg);
    background-size: cover;
}
body *{
    margin: 0;
}
.heading{
    padding-left: 16px;
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    padding: 0 16px;
}
p{
    font-size: 14px;
    padding-left: 16px;
    margin-bottom: 8px;
    margin-top: 24px;
    font-weight: 500;
}
input{
    max-height: 56px;
    font-size: 16px;
    padding: 18px 16px;
    border: 1px solid grey;
    border-radius: 13.5px;
}
form{
    display: flex;
    flex-direction: column;
    padding: 16px;
    width: 100%;
    border-radius: 13.5px;
    /*border: 1px solid grey;*/
    max-width: 500px;
    background-color: white;
}
.error_message{
    font-size: 10px;
    color: #ff0000;
    margin-top: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}
.error_message > img{
    padding-right: 4px;
}
.submit_button{
    background-color: #ff8700;
    border: none;
    color: white;
    font-weight: 600;
}