body {
    font-family: Arial, sans-serif;
    background-color: #F1F4F5;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

.alerthere {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalalerthere {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert {
    min-width: 250px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.loginbody {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.logincreds {
    width: 450px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
}

.formcolumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.formcolumn span {
    width: 100%;
}

/* .formtitle {
    font-weight: bold;
    font-size: 28px;
} */

.formsubtitle {
    font-size: 19px;
    font-weight: bold;
    color: #616364;
}

.mb-3 {
    width: 100%;
}

/* .mb-3 input:focus {
    outline: none;
    box-shadow: none;
    background-color: white;
} */

.passwd {
    display: block;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.passwd input {
    width: 100%;
    border: none;
    outline: none;
    padding-right: 34px;
}

/* .passwd:focus-within {
    border: 1px solid #4991ef;
} */

.passwd i {
    cursor: pointer;
    float: right;
    margin-top: -27px;
    margin-right: 10px;
}

.loginsubmit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    background-color: #273C88;
    outline: none;
    border: none;
}

.logoimg {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .logincreds {
        width: 95%;
        border-radius: 5px;
    }
}