@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Tajawal',Arial, sans-serif, Times New Roman!important;
    direction: rtl;

    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background-color: #f4f4f4;
    color:#4b6080;

    background-image: url('../images/BaseraaBk1920x1182.jpg');
    background-size:cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}

button {
    font-family: 'Tajawal',Arial, sans-serif, Times New Roman!important;
    font-size: 20px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    height: auto;
    /* margin:20px 70px 20px 70px; */

    background: rgb(255,255,255,0.2);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 8px;
    overflow: hidden;

    transform: scale(0.9);
}

/* Login Section */
.login-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
}

h2 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
     color:#4b6080;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;

}

input:focus {
            border-color: #01398e96;
    box-shadow: 0 0 0 3px rgba(1, 57, 142, 0.2);
    outline: none;
}

button {
    padding: 10px;
    background-color: #007BFF;

    /* background: linear-gradient(180deg,rgba(138, 212, 139, 0.8) 0%, rgba(67, 156, 30, 1) 35%, rgba(138, 212, 139, 0.8) 100%); */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    /* background-color: #0056b3; */
    background: linear-gradient(180deg,rgba(138, 212, 139, 0.8) 0%, rgb(154, 232, 120) 35%, rgba(138, 212, 139, 0.8) 100%);
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    /* object-fit: cover; */

 }

main {
    width:100vw;
    background-image: url('../images/BaeesrahHero.jpg');
    background-size:cover; 
    background-repeat: no-repeat; 
}


/* password toggle hide/show */
/* It is also defined in style.css */
.password-wrapper {
  position: relative;
  display: inline-block;
  
}

.password-wrapper input {
  padding-left: 40px; /* space for icon */
}

.icon-container {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
  height: 20px;
  
}

.icon-container img {
  width: 100%;
  height: auto;
}


@media (max-width: 800px) {
    .container {
        
        /* grid-template-columns: 1fr; */
        width: 92%;
        /* width: 100%; */
    }
}