/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-container .LogoImg{
    width: 100px;
    margin-bottom: 20px;
}

.login-container .ijm{
    width: 80px;
    margin-bottom: 20px;
}

.login-container h2 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #333;
    font-size: 22px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.login-container input:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.login-container button:hover {
    background-color: #0056b3;
}

.login-container p {
    margin-top: 10px;
    font-size: 14px;
    color: red;
}

.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #555;
  background: rgba(255, 255, 255, 0.3); /* Optional */
}

