.login-input-container {
    position: relative;
    margin: 12px 0;
}

.login-input-container > input {
     width: calc(100% - 30px);
     border: none;
     border-bottom: 2px solid #ccc;
     font-size: 16px;
     outline: none;
     color: #333;
     padding: 8px 1px 8px 0;
}

.login-input-container > .input-error-message {
    margin-top: 3px;
    font-size: 12px;
    color: red;
    opacity: 0;
    max-height: 0;
    transition: max-height 1s, opacity 1s;
    overflow: hidden;
}

.login-input-container.touched > .input-error-message {
    opacity: 1;
    max-height: 500px;
}

.login-input-container > label {
    position: absolute;
    top: 20px;
    left: 8px;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.login-input-container.active > label,
.login-input-container.filled > label {
    top: -6px;
    font-size: 12px;
}

.login-input-container.active > label {
    color: #AFDC7B;
}

.login-input-container.active > input {
    border-bottom: 2px solid #AFDC7B;
}

.login-input-container.touched.error:not(.active) > input {
    border-bottom: 2px solid #d32f2f;
}

.login-input-container.filled:not(.active) > label {
    color: #666;
}

.login-input-container > i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.login-subhead {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: .01em;
}

.submit-button,
.close-button,
.reject-button {
    background-color: rgb(200, 200, 200);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    color: #fff;
    cursor: not-allowed;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.submit-button:not([disabled]) {
    background-color: #AFDC7B;
}

.submit-button:not([disabled]):hover {
    background-color: #9BC16E;
    cursor: pointer;
}

.close-button:not([disabled]) {
    background-color: #fff;
    color: #000000;
}

.close-button:not([disabled]):hover {
    background-color: rgb(197, 197, 197);
    cursor: pointer;
}
.reject-button:not([disabled]) {
    background-color: rgb(255,87,34);
}

.reject-button:not([disabled]):hover {
    background-color: rgb(244,81,30);
    cursor: pointer;
}

input[type="checkbox"] {
    appearance: none;
    min-width: 14px;
    min-height: 14px;
    border: 1px solid rgb(175, 220, 123);
    background-color: white;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:before {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 100%;
    content: " ";
}

input[type="checkbox"]:checked::before {
    content: "\2713";
    background-color: rgb(175, 220, 123);
}