body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

.login-container h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.login-container .logo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -60px; /* Adjust this if needed */
}

.login-container .logo img {
    width: 80%;
    height: auto;
    border-radius: 50%;
}

.login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container label {
    align-self: flex-start;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.875rem;
    width: 100%;
    text-align: left; /* Ensure the text is aligned to the left */
}

.login-container input {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left; /* Ensure text inside the input is aligned to the left */
}

.login-container button {
    background-color: #1f458c;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.login-container button:hover {
    background-color: #163a6b;
}

.login-container a {
    color: #1f458c;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.login-container a:hover {
    text-decoration: underline;
}
