*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: white;
}

.error_message{
    color: white;
    background: red;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

body{
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: wheat;
    background: url('/assets/image/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
    overflow: hidden;
    overflow-y: scroll;
    padding: 30px 0;
}

.body_class{
    
    overflow: hidden;
    overflow-y: scroll;
    padding: 30px 0;
}

.body_class h1{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body_class form{
        flex-direction: unset;
    flex-wrap: wrap;
    justify-content: space-between


}

.body_class .p_full{
    width: 100% !important;
}

.body_class p{
    width: 48%;
}


@media screen and (max-width: 600px){
    .body_class{
        justify-content: flex-start;
        height: 100%;
    }
    
    .body_class p{
        width: 100%;
    }
}

form{
    display: flex;
    width: 95%;
    max-width: 700px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #ff006f4d;;
    padding: 50px 30px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    color: white !important;
}

h1{
    margin-bottom: 30px;
    text-transform: uppercase;
}

p{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 35px;
}

label{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

input{
    width: 100%;
    font-size: 16px;
    padding: 5px;
    color: white;

    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid #000;
}

input::placeholder{
    color: white;
    opacity: .5;
}

center{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

button{
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 12px 40px;
    color: white;
    background: green;

    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 10px;
    margin: 15px 0 20px 0;
}