body{
    background-color: #EDEFF4 !important;
}
.border-left-red {
    border: .5px solid #9d9d9d;
    border-left: 6px solid red !important;
    width: 100% !important;
    background: #fff !important;
    color: #000000 !important;
    padding: 2px;
    align-items: center;
    align-content: center;
    display: flex;
    margin-bottom: 10px;
}

.app {
    display: flex !important;
    height: 100vh;
    margin: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
}

.form-div {
    /* width: 30%; */
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.8);
    padding: 30px 8px;
    border-radius: 14px;
}

.logo {
    justify-content: center;
    display: flex;
    text-align: center;
    align-items: center;
    align-content: center;
}

#toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #000000;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    font-family: sans-serif;
    display: none;
    z-index: 1000;
  }
  

.toast-error {
    background-color: #ff0000 !important;
}

.toast-success {
    background-color: #19ff00 !important;
}

.loginIcon {
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

@media (max-width:700px) {
    .form-div {
        width: 80% !important;
    }
}