body {
    position: absolute;
    padding: 0;
    margin: 0;
    background-color: #fff;
    color: #0e4e90;
    width: 100%;
    height: 100%;
    /* font-family: 'Lato'; */
    font-family: "Montserrat";
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-message {
    color: red;
    margin-top: 16px;
    background-color: lightgray;
    padding: 2px 5px;
    font-weight: bold;
    width: 100%;
    font-size: small;
    border-radius: 3px;
    border: 1px solid red;
}

.form {
    border-radius: 8px;
    padding: 64px 32px;
    padding-bottom: 128px;
    box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.25);
    width: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
}

.logo {
    width: 200px;
}

.title {
    margin-top: 5px;
    font-size: 30px;
}

.input-frame {
    margin-top: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 350px;
}

.username {
    margin-top: 32px;
}

.input-icon {
    padding: 0 15px;
    color: #43b1ff;
    font-size: 16px;
}

.input {
    box-sizing: border-box;
    border: 0;
    padding: 16px;
    font-size: 14px;
    color: #1d69dc;
    outline: none;
    font-family: "Montserrat";
    width: 100%;
}

.input:-webkit-autofill-selected {
    background-color: #fff !important;
}

.input:-webkit-autofill {
    background-color: #fff !important;
}

::placeholder {
    color: #bbb;
    opacity: 1;
}

.options {
    margin: 25px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 350px;
}

.options-group {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.option-label {
    font-size: 14px;
    color: #666;
    cursor: default;
}

.option-label.link {
    color: #666;
}

.option-label.link:hover {
    color: #1d6bdf;
    cursor: pointer;
}

.signin {
    margin-top: 5px;
    box-sizing: border-box;
    width: 200px;
    padding: 12px 16px;
    border: 0;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    background-color: #1d6bdf;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    box-shadow: rgba(221, 221, 255) 0px 3px 7px 0px;
    font-family: "Montserrat";
}

.signin:hover {
    background-color: #3d86f3;
}
