/* Login styles */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: var(--dark-purple);
    background-color: var(--body-back-color);
}
:root{
    --dark-purple:#31178f;
    --soft-purple:#7226b0;
    --back-color-main:#ffffff;
    --body-back-color:rgb(248, 246, 254);
    --main-text:black;
    --light-color:white;
    --secondary-text:#777;
}

h2,label{
    font-weight: 600 !important;
}
.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
}

/* Left container styles */
.left-container {
    background-color: var(--body-back-color);
    flex: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}


.logos {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-left{
    width: 100px;
    height: auto;
}
.login-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.login-description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

.login-form {
    padding: 2% 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form label {
    font-weight: bold;
}

.login-form input[type="email"],
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 94%;
    background-color: var(--back-color-main);
    padding: 10px 50px 10px 10px;
    border: 1px solid var(--dark-purple);
    border-radius: 14px;
    font-size: 16px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}
.login-form input[type="email"]:focus,
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    background-color: transparent;
    box-shadow: 0px 0px 3px 1px var(--dark-purple);
    outline: none;

}

.password-container {
    position: relative;
}

.password-container .toggle-password {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.toggle-password ion-icon{
    margin-top: -5px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--dark-purple);
}
.forgot-password:hover{
    text-decoration: underline;
}
.btn-div{
    display: flex;
    justify-content: center;
}
.button {
    padding:12px 15px !important;
    width: 200px;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

/* Right container styles */
.right-container {
    background-image: url(css-images/bg-illustrate.png);
    background-size: cover;
    background-color: var(--back-color-main);
    flex: 1;
    padding: 40px;
    border-left: 4px solid var(--dark-purple);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
@media (max-width:992px){
    .right-container{
        background-image: url(css-images/bg-illustrate-horizontally.png);
    }
}

.right-container h2 {
    margin-bottom: 20px;
}

.right-container p {
    margin-bottom: 30px;
}
@media (width:1024px){
    .container{
        display: block;
    }
}
@media (max-width:992px){
    .container{
        display: block;
    }
    .login-form{
        padding: 2% 8%;
    }
    .right-container{
        border-left: none;
        border-top: 3px solid var(--dark-purple);
    }
    .btn.log-in{
        display: block !important;
    }
}
@media (max-width:768px){
    .login-form input[type="email"],
    .login-form input[type="text"],
    .login-form input[type="password"] {
        width: 79%; 
    }
    .login-form .toggle-password{
        right: 15px;
    }
    .left-container .forgot-password{
        text-align: center;
    }

}