body {
    font-family: 'Comic Sans MS', sans-serif;
            background-color: #95D2B3; /* Background color */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            overflow: hidden;
            background-image: url(../../images/phototolog.jpg);
            background-size: cover; /* Show the entire image */
            background-position: left center;
            background-repeat: no-repeat;
}

.login-container {
    width: 100%;
    max-width: 350px; /* Set a max-width for the container */
    background-color: rgba(0, 0, 0, 0.3); /* Transparent white background */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 3px solid #4581e2;
    z-index: 1;
    transition: transform 0.3s ease; /* Scale effect on hover */
}

.login-container:hover {
    transform: scale(1.05); /* Enlarge the container on hover */
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #9eea68;
    transition: color 0.3s ease;
}

.login-container:hover h1 {
    color: #ff4500; /* Change title color on hover */
}

.input-group {
    margin-bottom: 15px;
    text-align: left; /* Align text to the left for English */
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    color: #9eea68;
    transition: color 0.3s ease;
}

input, select {
    width: 94%;
    padding: 12px;
    border: 2px solid #9eea68;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus {
    border-color: #55Ad9B; /* Change border color on focus */
    box-shadow: 0 0 5px rgba(85, 173, 155, 0.5); /* Add shadow effect */
    outline: none;
}

button {
    background-color: #9eea68;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #9ef85e; /* Change button color on hover */
    transform: scale(1.05); /* Enlarge button on hover */
}
.loader {
    position: fixed;
    top: 25%;
    left: 50%;
    display: none;  
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ca0707; /* أحمر */
    box-shadow: 32px 0 #ca0707, -32px 0 #ca0707; /* أحمر */
    animation: flash 0.3s ease-in infinite alternate;
    z-index: 1000;
}

.loader::before,
.loader::after {
    content: '';
    position: absolute;
    left: -64px;
    top: 0;
    background: #ca0707; /* أحمر */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform-origin: 35px -35px;
    transform: rotate(45deg);
    animation: hitL 0.3s ease-in infinite alternate;
}

.loader::after {
    left: 64px;
    background: #ca0707; /* أحمر */
    transform: rotate(-45deg);
    transform-origin: -35px -35px;
    animation: hitR 0.3s ease-out infinite alternate;
}

@keyframes flash {
  0%  , 100%{
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 255, 255, 0.25);
  }
  25% {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 255, 255, 1);
  }
  50% {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 255, 255, 0.25);
  }
  75% {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 32px 0 rgba(255, 255, 255, 1), -32px 0 rgba(255, 255, 255, 0.25);
  }
}

@keyframes hitL {
 0% {
   transform: rotate(45deg);
   background-color: rgba(255, 255, 255, 1);
  }
25% , 100% {
   transform: rotate(0deg);
  background-color: rgba(255, 255, 255, 0.25);
  }
}

@keyframes hitR {
 0% , 75% {
   transform: rotate(0deg);
   background-color: rgba(255, 255, 255, 0.25);
  }
 100% {
   transform: rotate(-45deg);
  background-color: rgba(255, 255, 255, 1);
  }
}