.form {
    border: 2px #1281d7 solid;
    border-radius: 5px;
    background-color: white;
    max-width: 340px;
    margin: auto;
    box-sizing: border-box;
}

.form_header {
    font-weight: bold;
    font-size: 12pt;
    color: white;
    background-color: #1281d7;
    text-align: center;
    padding: 6px;
}

.form_label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

.form_error {
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: red;
    border-radius: 5px;
    padding: 4px;
    background-color: #ffd3d3;
}

.form_input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 6px;
    padding: 6px;
    border-radius: 5px;
    border: 2px solid #dddddd;
    outline: none;
    transition: border-color 0.5s;
}

.form_input:focus {
    border-color: #1281d7;
}

.form_button {
    width: 100%;
    font-size: 12pt;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #27a07e;
    margin-top: 25px;
    padding: 6px;
    color: white;
}
