#header_title {
    font-weight: 700;
    text-align: center;
    background-color: #602560;
    color: #ffffff;
}

#header_subtitle {
    color: #202040;
    text-align: center;
}

.form_space {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
}

.form {
    width: 688px;
    background-color: #f2f2f2;
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-rows: repeat(3, auto);
}

.form p {
    color: #888;
}

.form header {
    background-color: #602560;
    color: #FAFAFA;
    padding: 0.5rem 1rem 0.5rem 1rem;
}

.form main {
    padding: 1rem;
}

.form footer {
    background-color: #602560;
    color: #FAFAFA;
    padding: 0.5rem 1rem 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form input {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #fafafa;
}

.form select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #fafafa;
}

.doubleInput {
    display: grid;
    grid-template-columns: 1fr 1rem 1fr;
}

.blue_button {
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    width: fit-content;
    height: fit-content;
    padding: 5px 2rem;
    border-radius: 0.5rem;
    font-family: "Chula";
    border: none;
    color: #f2f2f2;
    background-color: #008BFF;
    transition: all 500ms ease;
}

.blue_button:hover {
    filter: drop-shadow(0 0 10px #008BFFAA);
    transition: all 200ms ease;
}

.red_button {
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    width: fit-content;
    height: fit-content;
    padding: 5px 2rem;
    border-radius: 0.5rem;
    font-family: "Chula";
    border: none;
    color: #f2f2f2;
    background-color: #FF6464;
    transition: all 500ms ease;
}

.red_button:hover {
    filter: drop-shadow(0 0 10px #FF6464AA);
    transition: all 200ms ease;
}

.yellow_button {
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    width: fit-content;
    height: fit-content;
    padding: 5px 2rem;
    border-radius: 0.5rem;
    font-family: "Chula";
    border: none;
    color: #f2f2f2;
    background-color: #FFAA00;
    transition: all 500ms ease;
}

.yellow_button:hover {
    filter: drop-shadow(0 0 10px #FFAA00AA);
    transition: all 200ms ease;
}

#togglePasswordButton {
    color: #FFAA00;
    background: none;
    border: none;
    cursor: pointer;
}

#submit_button {
    text-decoration: none;
    font-weight: bold;
    padding: 5px 2rem;
    border-radius: 0.5rem;
    font-family: "Chula";
    border: none;
    color: #202040;
    background-color: #FFAA00;
    transition: all 500ms ease;
}

#submit_button:hover {
    filter: drop-shadow(0 0 10px #FFAA00);
    transition: all 200ms ease;
}