/* @font-face{
    font-family: IranYekan;
    src: url(View/1025/font/YekanBakh-VF.ttf);
}
body{
    font-family: IranYekan;
    overflow-x: hidden;
}
*{
    font-family: IranYekan;
} */
img{
    border-style: none;
    border: none;
}
  /* .Message {
        border-radius: 5px;
    }
    .MessageTitle{
         border-top: 8px solid #ff444e;
        background-color: #fff;
        color: #000;
        font-size: 16px;
        border-top-right-radius: 5px;
        border-top-left-radius:5px ;
        border-bottom: 1px dashed rgb(237 237 237); 
        text-align: center;

    }
    .MessageTitle img {
    padding: 5px;
    border: 1px solid #A1A1A1;
    border-radius: 3px;


    }
    .MessageText{
        font-size: 14px;
       padding: 28px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
    } */

    .Message .MessageTitle {
    background-color:#fff;
    border-top: 8px solid #ff444e;
    color: #737373;
    text-align: center;
    margin: 0px auto;
    padding: 12px;
    font-size: 12pt;
    font-weight: bold;
    border-bottom: 1px dashed rgb(237 237 237); 
   
}
.Message .MessageText img{
    display: none;
}
.Message .MessageTitle img{
    display: block;
}

.MessageText {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    direction: rtl;
    overflow: auto;
}

.login-container {
    display: flex;
    height: 100vh;
    flex-direction: row-reverse;
    background-color: #000000; 
    /* Changed from row-reverse to row */
}

.login-form {
    /* width: 550px; */
    /* height: 1024px; */
    padding: 40px 60px;
    background-color: #000000;
    /* overflow-y: auto; */
}

.login-image {
    flex: 1;
    min-width: 826px;
    height: auto;
    margin: 32px;
    border-radius: 24px;
    background-color: #242528;
    background-image: url("View/1025/Frame 2 1.svg");
    background-size: cover;
    background-position: center;
}

.input-field {
    border-radius: 1000px;
}

.btn-primary {
    background-color: #2FE784;
    color: #000000;
    border-radius: 1000px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2FE784;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 231, 132, 0.3);
}

.btn-outline {
    border: 1px solid #242528;
    border-radius: 1000px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.divider {
    height: 1px;
    background-color: #242528;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    background-color: #2FE784;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    background-image: url('./public/icons/check-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 8px;
    top: 8px;
    left: 7px;
}

input:focus {
    outline: none;
}

.text-green-400 {
    color: #2FE784;
    transition: all 0.3s ease;
}

.text-green-400:hover {
    color: #25c670;
    text-decoration: underline;
}

.custom-text-green {
    color: #2FE784;
  }


  .header-logo {
    width: 4.25rem !important;
    height: 4.25rem !important;
}
/* Header logo size optimization */

@media (max-width: 360px) {
    .header-logo {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
    
    
}

@media (max-width: 768px) {
    .header-logo {
        width: 4.25rem !important;
        height: 4.25rem !important;
    }
    
   
}

/* Responsive design */
@media (max-width: 1400px) {
    .login-form {
        width: 450px;
        padding: 30px 40px;
    }
    
    .login-image {
        min-width: 600px;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    html, body {
        overflow: auto;
        height: 100%;
        position: fixed;
        width: 100%;
    }
    
    .login-container {
        flex-direction: row-reverse; /* Keep side by side for tablets */
        height: 100vh;
       
    }
    
    .login-form {
        width: 55%;
        height: 100vh;
        padding: 16px 32px;
       
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .login-form > div {
        transform: scale(0.92);
        transform-origin: top center;
    }
    
    /* Adjust spacing to prevent overflow */
    .login-form .mb-12 {
        margin-bottom: 1rem;
    }
    
    .login-form .mb-8 {
        margin-bottom: 0.75rem;
    }
    
    .login-form .mb-6 {
        margin-bottom: 0.5rem;
    }
    
    .login-form .mb-4 {
        margin-bottom: 0.5rem;
    }
    
    /* Adjust font sizes */
    .login-form h1 {
        font-size: 1.5rem;
    }
    
    .login-form p,  .login-form label {
        font-size: 0.75rem;
    }
    .login-form button{
        font-size: 1rem;
    }
    .forgetTxt{
        font-size: 14px;
    }
    .rememberTxt{
        font-size: 14px;
    }
    
    /* Make social login buttons more compact */
    .login-form .btn-outline {
        padding: 0.75rem 0;
    }
    
    /* Adjust space between social login options */
    .login-form .space-x-4 {
        column-gap: 0.5rem;
    }
    
    .login-image {
        width: 45%;
        min-width: auto;
        height: 80vh;
        margin: 2rem;
        border-radius: 10px;
    }
}


.inputFont{
    font-size: 1rem;
    border-radius: 2rem;

}
.border-red-900{
    border-color: #EA4335;
}

@media (min-width: 1024px){
.startFont{
    font-size: 18px;
    line-height: 1.6rem;
}
.wellcomeFont{
    font-size: 36px;
}
.pleaseFont{
    font-size: 14px;
}
.passFont{
font-size: 14px
}
.phoneFont{
font-size: 14px
}
.rememberTxt{
    font-size: 1rem;
}
.forgetTxt{
    font-size: 1rem;
}
.googleFont{
    font-size: 1rem;
}
.linkedINFont{
    font-size: 1rem;
}
.ayaFont{
    font-size: 1rem;
}
.padInput1{
    padding-top: .75rem;
    padding-bottom: .75rem;
}
.padInput2{
    padding-top: .75rem;
    padding-bottom: .75rem;
}
.padButton{
    padding-top: 1rem;
    padding-bottom: 1rem;
}


}

.btnSubmit{
    font-size: 1rem;
}
@media (max-width: 767px) {
    .login-container {
        flex-direction: column; /* Stack for mobile */
    }
    
    .login-form {
        width: 100%;
        height: auto;
        padding: 24px 32px 48px;
    }
    
    .login-image {
        min-width: 100%;
        height: 40vh;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    html, body {
       
        height: 100%;
        position: fixed;
        width: 100%;
    }
    
    .login-container {
        height: 100vh;
       
        position: relative;
    }
    
    .login-image {
        display: none;
    }
    
    .login-form {
        padding: 20px 16px;
        height: 100vh;
        width: 100%;
      
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .login-form > div {
        transform: scale(0.95);
        transform-origin: top center;
    }
    
    .rememberTxt, .forgetTxt {
        font-size: 14px;
    }
    
    .divider {
        background-color: #DFDFDF;
    }
    
    /* Adjust font sizes for better fit on small screens */
    h1 {
        font-size: 1.5rem !important;
    }
    
    p, button, input, label {
        font-size: 0.85rem;
    }
    
    /* Adjust spacing to fit content without scrolling */
    .mb-12 {
        margin-bottom: 1rem;
    }
    
    .mb-8 {
        margin-bottom: 0.75rem;
    }
    
    .mb-6 {
        margin-bottom: 0.5rem;
    }
    
    .mb-4 {
        margin-bottom: 0.5rem;
    }
    
    /* Make social login buttons more compact */
    .btn-outline {
        padding: 1rem;
        font-size: 0.75rem;
    }
    
    /* Make social login section more compact */
    .flex.space-x-4 {
        column-gap: 0.5rem;
    }
    
    /* Adjust image sizes in buttons */
    .btn-outline img, .w-6.h-6 {
        width: 1.25rem;
        height: 1.25rem;
    }
    .marginWellcom{
        margin-bottom: 1rem;
    }
}







/*
.form-group {
    margin-bottom: 13px;
    transition: transform 0.2s ease;
}

.form-group:focus-within {
    transform: translateY(-2px);
}


@media (min-width: 768px) and (max-width: 1023px) {
    .form-group label {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .form-group {
        margin-bottom: 4px;
    }
    
}

@media (min-width: 1024px) {
     .form-group label {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

@media (max-width: 767px){
     .form-group {
        margin-bottom: 4px;
    }
    
    .form-group label {
        font-size: 11px;
        margin-bottom: 1px;
    }
}


@media (max-height: 670px){
    .form-group {
        margin-bottom: 10px;
    }
}
*/

.loginSectionConatiner, .loginFormSection {
    background-color: black;
}

.lightMode .loginSectionConatiner, .lightMode .loginFormSection {
    background-color: #FFF;
}

.quoteText, .welcomeText, .remember-text {
    color: #FFF;
}

.lightMode .quoteText, .lightMode .welcomeText, .lightMode .remember-text {
    color: black;
}

.separatorLine {
    background-color: #FFF;
}

.lightMode .separatorLine {
    background-color: black;
}

#phone, #password {
    color: #FFF;
}

.lightMode #phone, .lightMode #password {
    color: black;
}
.form1 .custom-checkbox {display: inline-flex;align-items: center;font-size: 11pt;cursor: pointer;}.form1 .custom-checkbox input[type="checkbox"] {display: none;}.form1 .custom-checkbox label {display: inline-flex;align-items: center;cursor: pointer;}.form1 .custom-checkbox .check-icon {width: 18px;height: 18px;border-radius: 4px;background-color: #00B38A;display: inline-block;position: relative;transition: all 0.3s ease-in-out;margin-left: 8px;}.form1 .custom-checkbox input[type="checkbox"]:checked + label .check-icon::before {content: "";background-image: url('View/1025/mark.svg');background-repeat: no-repeat;background-size: 12px 12px;background-position: center;position: absolute;top: 50%;left: 50%;width: 100%;height: 100%;transform: translate(-50%, -50%);}.form1 .custom-checkbox .remember-text {user-select: none;}

