.body {
    background-image: url("../imgs/login3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

.input-box {
    width: 225px;
    box-sizing: border-box;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input {
    height: 45px;
    width: 100%;
    background: rgb(239, 236, 233);
    border-radius: 10px;
    border: none;
    outline: none;
    padding-left: 50px;
    color: #11994a;
    font-weight: bold;
}

.input-field label {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #11994a;
    font-size: 18px;
    transition: all 1s ease;
    margin-left: 5px;
}

.input:focus + label,
.input:valid + label {
    top: -7px;
    font-size: 15px;
    color: #11994a;
}

.fa-eye,
.fa-user {
    position: absolute;
    top: 13px;
    left: 13px;
    cursor: pointer;
    color: #11994a;
    font-size: 20px;
}

.submit {
    width: 225px;
    border: none;
    outline: none;
    height: 45px;
    background: rgb(200, 153, 73);
    border-radius: 10px;
    transition: 0.4s;
    font-weight: bold;
    color: white;
    font-size: 25px;
}

.submit:hover {
    background: #11994a;
    color: white;
}

.signin {
    color: white;
    text-align: center;
    margin-top: 25px;
}

.contact-us {
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.contact-us:hover {
    color: #11994a;
}

.error-msg {
    color: #d64242;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    display: inline-flex;
    max-width: 100%;
    padding: 2px 6px;
    white-space: wrap;
    text-overflow: ellipsis;
    text-align: center;
    border-radius: 10px;
    margin-top: 10px;
}
