.main_login_section{
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    width: 100%;
    height: calc(100vh - 200px);
}
.left_login_section{
    flex: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pink-color);
    height: 100%;
}
.right_login_section{
    flex: 60;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-box {
    background: var(--background-color);
    padding: 30px 40px;
    border-radius: 15px;
    width: 350px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }
.login-title {
    font-size: 40px;
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: var(--font-main);
}
.login-subtitle {
    font-size: 18px;
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: var(--font-main);
}
.switcher {
    background-color: var(--gray-color);
    display: flex;
    width: 60%;
    justify-content: center;
    margin-bottom: 20px;
}
.switcher button {
    flex: 1;
    padding: 8px 10px;
    margin: 2px;
    border: 1px solid var(--gray-color);
    background: var(--gray-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    font-family: var(--font-main);
}
.switcher button.active {
    background: var(--pink-color);
    color: white;
    border-color: var(--pink-color);
}
.login-form{
    width: 100%;
}
.login-form-group {
    margin-bottom: 15px;
    width: 100%;
}
.login-form-group input {
    border: 1px solid var(--dark-gray-color-alpha);
    height: 50px;
    background-color: var(--background-main);
    border-radius: 25px;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: right; 
    font-weight: bold; 
    direction: rtl;
    width: 100%;
}
.login-button {
    width: 100%;
    background: var(--pink-color);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    max-width: 40%;
    height: 50px;
    font-family: var(--font-main);
}