@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
}

.wrapper {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}


.login_container input:focus-visible {
    outline: none;
    border: 1px solid #e8e8e8;
}

.login_header {
    padding: 5px 64px;
}

.tab-section .tabs {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 20px 40px 10px 40px;
}

.tab-section .sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.tab-section .sidebar button {
    border-radius: 10px;
    padding: 20px 20px;
    border: none;
    font-size: 22px;
}

.tab-section .sidebar button:first-child {
    width: 50%;
}

.tab-section .sidebar button:last-child {
    width: 50%;
    position: relative;     
}

.tab-section .sidebar button:last-child::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px; 
    background: #bbb;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.tab-section .sidebar button.tab-btn-active:last-child::before {
    left: -8px;
}

.tab-section .tab-btn {
    background-color: #f1f1f1;
    color: #7d7d7d;
    cursor: pointer;
    outline: none;
    width: 50%;
}

.tab-section .tab-btn-active {
    color: white;
    background-color: #669a41;
    font-weight: 600;
    font-family: 'Montserrat';
}

.inner.hr{
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 20px;
}
/* tabs content */
#verify-text {
    white-space: nowrap;
}

.content {
    width: 100%;
}

.tab-section .content ol {
    width: 100%;
    max-width: 600px;
}

.tab-section .content ol li {
    padding: 8px 0;
    border-bottom: 1px solid lightgray;
}

.tab-section .tab-content {
    display: flex;

    display: none;
}

.tab-section .tab-content-active {
    display: block;
}

.tab-section .tab-content img {
    width: 350px;
}

.inner {
    padding: 0 30px;
}

.inner input {
    width: 100%;
    height: 60px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.inner .fields {
    margin: 15px 0;
}

.inner .fields input {
    background-image: url("../assets/images/user.png");
    background-repeat: no-repeat;
    background-position: 98% 51%;
}

.inner .fields.email input {
    background-image: url("../assets/images/email.png");
    background-repeat: no-repeat;
    background-position: 98% 51%;
}

.login_container {
    border: 1px solid #e8e8e8;
    background-color: white;
    max-width: 611px;
    width: 100%;
    margin: 0 auto;
    border-radius: 3px;
}

.login_container .inner {
    padding: 0
}

.login_container form {
    width: 100%;
}

.inner .check {
    height: 20px;
    width: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.inner .check img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    margin-right: 10px;
}

.detalis {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.personal_info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.personal_info input {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
}

.personal_info .input_fields {
    width: 49%;
}

.personal_info .input_fields input {
    width: 100%;
}

.personal_info input:first-child {
    background-image: url("../assets/images/user-logo.png");
    background-repeat: no-repeat;
    background-position: 98% 51%;
}

.personal_info input:last-child {
    background-image: url("../assets/images/user-logo.png");
    background-repeat: no-repeat;
    background-position: 98% 51%;
}

.phone_nimber input {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    max-width: 611px;
    width: 100%;
    /*background-image: url(./phone.png);*/
    background-image: url("../assets/images/phone.png");
    background-repeat: no-repeat;
    background-position: 98% 51%;
}

.price {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #F8F8F8;
    margin-top: 10px;
    align-items: center;
}

.price .price_info p {

    font-size: 16px;
    color: #669A41;
}

.price .price_info span {
    font-size: 20px;
    color: #669A41;
    font-weight: 600;
}

.register_btn {
    margin-top: 20px;
}

.register_btn button {

    border: none;
    background-color: #AA8B56;
    font-size: 20px;
    width: 100%;
    color: white;
    padding: 20px 0;
    border-radius: 10px;

}


.personal_info h2 {
    color: #070707;
    font-size: 18px;
}

.footer{
    background-color: #669A41;
    display: flex;
    justify-content: space-between;
    padding: 18px 66px;
    margin-top: 50px;
}

.footer .foot_item p {
    color: white;
}
.danger {
    color: red;
}
