

body {
    font-family: Arial, sans-serif;
    background-color: #afe1f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container styling */
.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}



/* Form element styling */
.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Button styling */
.login-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: blue;
    color: whitesmoke;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background-color: #0056b3;
}

.extra-links {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.extra-links a {
    color: #007bff;
    text-decoration: none;
}

h2{
    text-transform: uppercase;
    font-weight: lighter;
    justify-content: center;
    display: flex;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 2px;
}

#sarim{
    height: 100px;
    background-color: white;
    display: flex;
    justify-content: center;

}





