/* Import Google Font */
/* 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f3f4f6, #e6eef8); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    width: 380px;
    text-align: center;
    border-top: 5px solid #2E8B57;
}

.login-container h1 {
    margin-bottom: 20px;
    color: #333;
}

.imgcontainer img {
    width: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #2E8B57;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    background: #f9f9f9;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #2E8B57;
    box-shadow: 0px 0px 8px rgba(46, 139, 87, 0.3);
    background: white;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

button {
    background: linear-gradient(to right, #2E8B57, #4CAF50);
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: linear-gradient(to right, #4CAF50, #2E8B57);
}

.bottom-text {
    margin-top: 10px;
    font-size: 14px;
}

.bottom-text a {
    color: #2E8B57;
    text-decoration: none;
    font-weight: bold;
}

.bottom-text a:hover {
    text-decoration: underline;
} */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    font-family: Arial, sans-serif;
    margin: 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-container h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.imgcontainer {
    margin-bottom: 1rem;
}

.imgcontainer img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
}

input[type="text"], input[type="password"] {
    width: 95%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

button {
    width: 100%;
    padding: 10px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s ease;
}

button:hover {
    background: #ff4757;
    transform: scale(1.05);
}
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}