.Body_Login__Container{
    max-width: 504px;
    width: 100%;
    margin: 0 auto;
    display: none;
}

.Body_Login__Tabs__Container{
    display: flex;
    align-items: center;
}

.Body_Login__Tabs__Content__Wrapper {
    overflow: hidden;
    position: relative;
    width: 100%; /* Set width according to your layout */
    height: auto; /* Adjust height as necessary */
}

.Body_Login__Tabs__Content__Container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* Assuming 2 tabs, 100% per tab */
}

.Body_Login__Tabs__Item{
    background: #F0F0F0;
    width: 50%;
    padding: 13px 0;
    cursor: pointer;
    border-bottom: 2px solid #FFFFFF;
    font-size: 16px;
}

.Body_Login__Tabs__Item--selected {
    background: #E3E3E3;
    border-bottom: 2px solid #E21327;
}

.Body_Login__Tabs__Item:hover{
    background: #E3E3E3;
}

.Body_Login__Tabs__Item__Content {
    width: 50%; /* Each tab content takes half of the container */
    flex-shrink: 0;
}

.Body_Login__Tabs__Title{
    padding: 35px 0 33px 0;
    font-size: 20px;
}

.Body_Login__Form__Element__Container{
    margin-bottom: 26px;
}

.Body_Login__Form__Element__Input__Container{
    position: relative;
}

.Body_Login__Form__Element__ForgotPassword{
    color:#5375b2;
	font-size:13px;
}

.Body_Login__Form__Element__ForgotPassword:hover{
    text-decoration: underline;
}

.Body_Login__Form__Element__Label__Container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Body_Login__Form_Buttons__Container{
    text-align: center;
    margin-bottom: 20px;
}

.Body_Login__Form__AgreeMessage{
    margin-top: 13px;
    padding-bottom: 34px;
}

.Body_Login__Form__Element__Input__Icon{
    position: absolute;
    width: 51px;
    height: calc(100% - 2px);
    background-size: 26px;
    background-image: url("../../images/V3/Eye-Closed.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #F0F0F0;
    transition: background-color 0.5s ease;
    top: 1px;
    cursor: pointer;
}

.Body_Login__Form__Element__Input__Icon--opened{
    background-image: url("../../images/V3/Eye-Open.svg");
}

.Body_Login__Form__Element__Input__Icon:hover{
    background-color: #E3E3E3;
}

.Body_ForgotPassword__Note__Container{
    color:#868686;
    margin-bottom: 52px;
}

.Body_ForgotPassword__Back__Container a{
    display: inline-flex;
    align-items: center;
    color:#686868;
    gap:6px;
}

.Body_ForgotPassword__Back__Container a svg{
    width: 10px;
    height: 10px;
    fill: #686868;
}

.Body_Reset__Form__Element__Container{
    margin-bottom: 14px;
}