body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.admin-heading {
    font-family: 'Arial', sans-serif;  /* Modern font */
    font-size: 2rem;  /* Slightly smaller text size */
    font-weight: bold;
    text-align: center;
    color: #2332E7;  
    margin: 20px 0;  
    padding: 5px 0;  
    transition: color 0.3s ease-in-out; 
    margin-top: -10px;
}

.admin-heading:hover {
    color: #004085; 
    transform: scale(1.03);   
}



.login-box {
    display: flex;
    width: 60%;
    max-width: 900px;
    box-shadow: 0 4px 8px #004085(0, 0, 0, 0.1);
    padding-top: 100px;
}

.login-left {
    background-color: #2332E7;
    color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 450px;
    border: 2px solid #004085;
    border-radius: 2px;
}

.login-left h1 {
    font-size: 3rem;
    text-align: center;
}

.login-right {
    background-color: rgb(255, 255, 255);
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 450px;
    border: 1px solid white;
    border-radius: 2px;
}

h2 {
    margin-bottom: 20px;
    margin-left: 145px;
}.form-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group-append {
    display: flex;
}

.input-group-text {
    background-color: transparent;
    border: none;
    color: #2332E7; /* Icon color */
}

input {
    width: 100%;
    padding: 5px 0;
    border: none;
    background-color: transparent;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

input::placeholder {
    color: #004085;
    opacity: 1;
}

input:focus {
    outline: none;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
    border-color: white;
}
.horizontal {
    margin-top: 5px;
    border: 0;
    border-top: 2px solid #004085;
    position: relative;
    top: -5px;
}

button {
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #ccc; 
}

button {
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #ccc; 
}


button {
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #ccc; /* Optional: hover effect */
}

button {
    padding: 10px;
    background-color: #2332E7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: white;
    color: #2332E7;
}

.forgot-password {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #004085;
    text-decoration: none;
    padding-top: 20px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Logo styling to place it at the top-right corner */
/* Logo styling to place it at the top-center */
.logo {
    position: absolute;
    top: -10px; /* Adjust the top position */
    left: 48%; /* Aligns the logo horizontally at the center */
    transform: translateX(-50%); /* Offsets the logo by 50% of its width to ensure it's centered */
    width: 200px; /* Adjust the width as needed */
    height: 200px; /* Adjust the height as needed */
}
