@charset "utf-8";
@import url(main.css);

.content-center {
    display: flex;
    justify-content: center;
    align-items: center;

}
.flex-container {
    height: 50%;
    width: 50%;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 5px grey; 
    padding-top: 20px; /*not working*/
    padding-bottom: 20px; /*not working*/
}
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.form_field {
    border: none;
    font-size: 16pt;
    box-shadow: -2px -2px 1px grey;
    transition: 0.5s;
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.form_field:focus {
    outline: none;
}
