@font-face {
    font-family: 'Iransans';
    src: url('../fonts/IRANSansWeb.eot?dngpoi');
    src: url('../fonts/IRANSansWeb.eot?dngpoi') format('eot'),
        url('../fonts/IRANSansWeb.woff?dngpoi') format('woff'),
        url('../fonts/IRANSansWeb.ttf') format('truetype');

    font-weight: 200;
    font-style: normal;
}

;



body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    font-family: 'Iransans' !important;
    flex-direction: column;
}

.form-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.picture-section {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 5%;
    border-radius: 0px;
    background-color: white;
    width: 60%;
}

.form-group {
    position: relative;
    padding: 15px 0;
    margin-bottom: 10px;
}

.row .col-md-6 {
    padding-right: 5px;
    padding-left: 5px;
}


.form-control {
    border: 0;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    box-shadow: none;
    padding: 10px;
    color: black;
    background-color: #FFF !important;
}


.form-control:focus {
    border-color: #9dca00 !important;
    box-shadow: none !important;
    background-color: #fff !important;
}

.form-control:focus+label,
.form-control:valid+label {
    transform: translateY(-20px) !important;
    font-size: 12px !important;
    color: #9dca00 !important;
}

label {
    position: absolute;
    right: 0;
    top: 15px;
    transition: all 0.3s ease;
    color: darkgrey;
}

.btn {
    background-color: #9dca00;
    border-color: #9dca00;
    padding: 10px;
    color: white;
}

.btn:hover {
    background-color: #7f9f00;
    border-color: #7f9f00;
    color: white;
}

.toggle-buttons {
    display: flex;
    text-align: center;
    margin:5% 0px ;
    justify-content: center;
    z-index: 1000;
    gap: 4%;
    position: sticky;
}

.toggle-button {
    width: 200px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: rgb(190, 190, 190);
    border-radius: 0;
    transition: all 0.3s;
    
}

.active {
    background-color: #9dca00 !important;
    color: #fff !important;
    transform: scale(1.1) !important;
}

.password-toggle {
    position: absolute;
    top: 15px;
    left: 10px;
    cursor: pointer;
    color: #ced4da;
}

.toast-custom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
}


.form-img {
    width: 100%;
    border: 20px solid #FFF;
    box-shadow: -14px 0px 15px 4px #a9a9a936;
}

button.btn.submit {
    width: 100%;
    margin-top: 5%;
}

input#mobileInput,
input#phoneNumberInput {
    text-align: end;
}

.formFix {
    width: 90%;
}

.btnFix {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .form-card {
        width: 100%;
    }
  }