﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face{
 
    font-family: myfont;
    src: url("../fonts/GE.ttf") format("truetype"); 
  
  }
body {
   
    font-family: myfont !important;
   direction:rtl;
  }
.auth-container {
    display: flex;
    min-height: 100vh;
}

.auth-image-section {
    flex: 0 0 30%;
    background: url('../PIC/0202.PNG') no-repeat center center;
    background-size: contain;
    position: sticky;
    top: 0;
    min-height: 400px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.auth-content-section {
    overflow-y: auto;
    padding: 30px;
    float: left;
    width: 70%;
    min-height: 90vh;
    background: linear-gradient(0deg, rgba(57, 64, 84, 1), rgba(57, 64, 84, 1)), url('../pic/blacknwhite.jpg');
    background-size: cover;
    background-blend-mode: multiply;
}

.auth-form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-title2 {
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.first-word {
    color: #f26101;
}

.second-word {
    color: #ffffff;
}

.auth-input-group {
    margin-bottom: 1.8rem;
    width: 100%;
}

.auth-input-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.1rem;
    
}

.auth-form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f3f0ef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align:center;
}

.auth-form-input:focus {
    border: 2px solid #f3f0ef;
    outline: 3px solid #76c7f7 !important;
    box-shadow: 0 0 8px rgba(118, 199, 247, 0.6) !important;
}
#btnLogin {
    background-color: #f26101;
    border-color: #f26101;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
}

#btnLogin .lang_text {
    margin-right: 10px;
}

#btnLogin i {
    font-size: 18px;
}

@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    .auth-image-section {
        flex: none;
        width: 100%;
        height: 300px;
        position: relative;
    }
    .auth-content-section {
        width: 100%;
        min-height: auto;
        padding: 30px 20px;
    }
    .auth-form-wrapper {
        margin: 30px auto;
    }
    .auth-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .auth-image-section {
        flex: 0 0 100%;
        height: 50vh;
        position: relative;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .auth-form {
        padding: 1.5rem;
    }
    .auth-title {
        font-size: 1.8rem;
    }
    .auth-form-input {
        padding: 0.9rem;
    }
    .auth-submit-btn, .btn-login {
        width: 100%;
        padding: 12px 0;
    }
}

.auth-image-section::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

@media (min-aspect-ratio: 16/9) {
    .auth-image-section::before {
        padding-top: 75%;
    }
}
