body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #c8c8c8;
    font-family: Arial, sans-serif;
    background-image: url('../login_background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

form {
    border: 1px solid #ced4da;
    padding: 40px;
    border-radius: 10px;
    background-color: #ffffff;
}

.title {
    color: dodgerblue;
    font-family: "Public Sans", sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.12px;
    text-align: center;
    width: 100%;
}

.text_large {
    color: dimgrey;
    font-family: "Public Sans", sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.12px;

}

.login_button {
    display: flex;
    flex-direction: row;
    padding: 10px;
    background-color: dodgerblue;
    align-items: center;
    width: 100px;
    color: white;
    font-size: 20px;
    border-radius: 10px;
    justify-content: center;
}

.flex_row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.center {
    justify-content: center;
    align-items: center;
}

.my-custom-class {
    width: 100%;
    margin-bottom: 20px;
    border-color: lightgray;
    border-width: 1px;
    padding: 5px;
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.12px;
}

.login_container {
    background-color: #ffffff;
    border-color: #0a53be;
    border-width: 2px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}