body {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.spinner {
    background-color: #aebcff4d;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner::before {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #352CE8;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




.login-card {
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0, 0.1);
    padding: 30px;
    justify-content: center;
    align-items: center;
    width: 470px;
    height: 371px;


}

.login-card form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.login-image img {
    max-width: 100%;
    height: 90%;
}

#custom-alert {
    display: none;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.795);
    color: rgb(255, 255, 255);
    border: #7e7e7e 1px solid;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    border-radius: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    vertical-align: middle;
    min-width: 200px;
    max-width: 800px;
}

#custom-alert img {
    width: 32px;
    height: 32px;
}