* {
    margin: 0;
   
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}

.login-body {
    
    position: relative;
  /*  padding: 20px; */
}

.login-container {
  display: flex;
   
  width: 90%;
  max-width: 900px;
  background-color: white;
  border-radius: 10px;
 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 110px auto 10px auto;
  height: auto;
  min-height: 59vh;
}



/* Left Image Section */
.image-section {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #001B94, #001B9400); /* Gradient Overlay */
    z-index: 1;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text {
    position: absolute;
    top: 10%; /* Adjust this value to move it higher */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: left;
    color: white;
    width: 80%;
    font-size: 16px;
}


.image-text h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.image-text p {
    font-size: 12px;
    color: #E4DBDB;
}

/* Right Form Section */
.form-section {
    width: 50%;
  gap:15%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

p {
  	margin-top: 14px;
    font-size: 14px;
    margin-bottom: 20px;
}

a {
    color: #001B94;
    padding: 5px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

button {
    padding: 10px;
    background-color:#001B94;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #001B94;
}

.forgot-password {
    margin-top: 10px;
    text-align: center;
}

.copyright-text {
    position: absolute;
    bottom: 10px; /* Adjust this value as needed */
    left: 60%;
    transform: translateX(-50%);
    color:#FFFFFF;
    font-size: 12px;
    text-align: left;
    width: 100%;
    z-index: 2;
}

.icon-container {
    text-align: left; /* Center the icon */
    width:20%;
    height:auto; 
    margin-bottom: 10px; /* Space between icon and text */
}

.icon-container i {
    font-size: 32px; /* Adjust icon size */
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .image-section {
        width: 100%;
        height: 250px;
    }

    .image-text {
        font-size: 14px;
        width: 90%;
    }

    .form-section {
        width: 100%;
        padding: 30px;
    }

    h1 {
        font-size: 24px;
    }

    .image-text h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .login-container {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .form-section {
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    .image-text h2 {
        font-size: 16px;
    }

    input {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}
/* Style for the required * mark */
.required {
    color: red;
    font-weight: bold;
    padding:3px
}



