.main-content{
    background-image: url("../../images/login/login-signup-background.jpg");
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signin-card{
    width: 80%;
    max-width: 960px;
    height: 70%;
    max-height: 550px;
    background-color: white;
    border-radius: 44px;
    padding: 10px;
    display: flex;
    position: relative;
}

.image-div{
    flex: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 42px;
    background-color: #F7EAF8;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.main-logo{
    width: 110px;
    position: absolute;
    left: 20px;
}

.avatar-bubble{
    position: absolute;
    border-radius: 50%;
    border: 1px solid #5E17EB;
    overflow: hidden;
    z-index: 2;
}

.avatar-bubble img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.avatar-1-img{
    z-index: 2
}

.avatar-2-div{
    right: 10px;
    top: 200px;
}

.avatar-3-div{
    left: 30px;
    top: 60px;
}

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

.eclipse{
    background: #FFFFFF;
    filter: blur(14.2px);
    height: 245px;
    width: 245px;
    border-radius: 50%;
    position: absolute;
    right: 19%;
    top: 6%;
}

.info-div{
    background-color: white;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    bottom: 20px;
    padding: 10px 20px;
    z-index: 3;
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #393939;
}

.form-title{
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #393939;
    margin-bottom: 30px;
}

.login-form{
    width: 80%;
}

.login-form label{
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #393939;
}

.login-form input{
    background-color: #EEEEEE !important;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    height: 44px;
}

::-webkit-input-placeholder {
    font-size: 14px;
}

:-moz-placeholder {
    font-size: 14px;
}

::-moz-placeholder {
    font-size: 14x;
}

.visibility{
    position: absolute;
    top: 47px;
    right: 20px;
    cursor: pointer;
}

.visibility .material-icons{
    font-size: 18px;
    color: #00000080;
}

.visibility .material-icons.hide{
    display: none;
}

.forget-password{
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #5E18EB;
}

.signin-btn{
    background: #5E18EB;
    border-radius: 12px;
    border-color: #5E18EB;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

.signin-btn:hover{
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.signin-btn:focus{
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.alert-message.error{
    text-align: center;
}

.direct-to-sign-up-div{
    color: white;
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    position: absolute;
    bottom: -32px;
    right: 0px;
}

.go-sign-up-link{
    color: white;
    font-weight: 600;
}