@import url(core.css);

#formBox{
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 10px #eee;
}

#form, .form-group{
    display: flex;
    flex-direction: column;
}

.form-group{
    margin-bottom: 10px;
}

label{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.field, #add{
    padding: 10px 14px;
    background-color: #f3f3f3;
    border-radius: 12px;
}

.field{
    font-family: "Roboto", sans-serif;
}

#text{
    resize: vertical;
}

#add{
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    background-color: #4285f4;
    color: #fff;
}