body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabcontent {
    display: none;
    width: 100vw;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

.card_main {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 750px;
    height: fit-content;
    border: 10px solid white;
    border-radius: 30px;
    box-shadow: 0px 0px 5px rgb(212, 212, 212);
    margin: auto;
    box-sizing: border-box;
}

.card_container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 562px;
}

.card_left {
    width: 50%;
    padding: 30px 30px;
}

.login_img {
    width: 100%;
    height: 120px;
    margin-top: 40px;
}

.app_logo {
    height: 42px;
    /* position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, -50%); */
    /* background-color: white;
    padding: 13px;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    margin-bottom:50px;
    width: fit-content;
}

.title_img_container {
    position: relative;
    display: inline-block;
    height: 100%;
}

.text_title {
    color: #272F68;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.text_description {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.input_wrapper {
    margin-top: 9px;
}

.input_title {
    color: #949494;
    font-size: 10px;
    margin-left: 6px;
}

.login_input_field {
    width: -webkit-fill-available;
    outline: none;
    border: 2px solid #F0F0F0;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    transition: ease-in-out 0.3s;
}

.login_input_field:hover {
    border: 2px solid #8097F9;
}


.login_input_field[type] {
    font-weight: 400;
    color:#949494;
}



.login_input_field:focus {
    border: 2px solid #8097F9;
    color: #8097F9;
}

.input_wrapper:focus-within .input_title {
    color: #8097F9;
}

.input_title {
    transition: ease-in-out 0.3s;
}

.input_wrapper:hover .input_title {
    color: #8097F9;
}

.button_default {
    background-color: #8097F9;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: ease-in-out 0.3s;
}

.button_default:hover {
    background-color: #272F68;
}

.text_right {
    text-align: right;
}

.text_center {
    text-align: center;
}

.text_small {
    font-size: 10px;
}

.hyperlink {
    color: #8097F9;
    font-weight: 500;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}

.hyperlink:hover {
    color: #272F68;
}

.card_right {
    width: 50%;
    background-color: white;
    height: 622px;
    border-radius: 0 22px 22px 0;
}

.title_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.m_t_6px {
    margin-top: 6px;
}

.card_container div:first-child {
    display: flex;
    flex-direction: column;
}

.card_container div:first-child div:first-child {
    display: flex;
    flex-direction: column;
}