.titan-one-regular {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: Titan One, sans-serif;
    letter-spacing: 0px;
    padding: 20px;
    align-items: center;
    background-color: #fff8e5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


div.error_message {
    background-color: darkred;
    display: inline-block;
    color: white;
    height: auto;
    border-radius: 10px;
    padding: 0px 10px;
    /*line-height: 0;*/
    margin-bottom: 10px;
}

h1 {
    letter-spacing: 0px;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 15px;
    margin-top: 5px;
}

div.box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #494949;
    display: block;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

label, p {
    font-size: 15px;
}

input[type="submit"] {
    background-color: #5f8ca0;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-family: Titan One, sans-serif;
    font-size: 10px;
    cursor: pointer;
    width: 65%;
}

.form_row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form_label {
    width: 100px;
    font-size: 15px;
}

.form_row input {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: Titan One, sans-serif;
}

@media (max-width: 600px) {
    .form_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form_label {
        width: 100%;
        margin-bottom: 5px;
        text-align: left;
    }

    .form_row input, .form_row select {
        width: 100%;
    }
}