* {
    box-sizing: border-box;
}

.login-wrapper {
    padding: 30px;
    margin: 0 auto;
    max-width: 570px;
    width: 100%;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #fff;
}

.login__form__title {
    margin: 0;
    margin-bottom: 0.5em;
}

.login-field-row {
    margin: 0.5em 0;
}

.login-field-row-label {
    display: block;
    margin-bottom: 0.2em;
    color: rgb(17, 17, 17);
}

.required {
    color: red;
    text-decoration: none;
}

.field {
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    border: 1px solid #9d9d9d;
    padding: 10px;
    line-height: 1;
    color: #000;
}



.login-btn {
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    border: 1px solid #000;
    height: 42px;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s linear;
    background: #fff;
}

.login-messages {
    text-align: left;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    border: 1px solid;
    margin: 0.5em 0;
    font-size: 14px;

}

.bottom-buttons {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.login-message {
    margin: 0.5em 0;
}

.login-message-notices {
    background-color: #a8d3ff;
    border-color: #718fae;
    box-shadow: 0 0 8px 2px #a8d3ff;
    font-weight: 400;
}

.login-message-warnings {
    background-color: #ffdea8;
    border-color: #c5ab82;
    box-shadow: 0 0 8px 2px #ffdea8;
    font-weight: 400;
}

.login-message-errors {
    background-color: #ffa8a8;
    border-color: #c27f7f;
    box-shadow: 0 0 8px 2px #ffa8a8;
    font-weight: 600;
}

.login-wrapper .hidden {
    position: absolute;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

.login-wrapper .hidden-resend-button {
    display: inline;
}

.login-wrapper .hidden.visable {
    position: relative;
    opacity: 1;
    z-index: initial;
    visibility: visible;
}