/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Wrapper for centering the login form */
.center-wrapper {
    display: flex;
    align-items: center;  /* Vertically center */
    justify-content: center; /* Horizontally center */
    height: 100vh; /* Full viewport height */
    background-color: #f0f2f5; /* Light background */
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
}

/* Centering container */
.bgc {
    width: 100%;
    max-width: 400px; /* Adjust width as needed */
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
}

/* Header styles */
.header h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.header .l {
    color: #f542b9; /* Highlight 'L' in pink */
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the form elements */
}

/* Input container */
.input-container {
    width: 100%; /* Full width */
    margin-bottom: 15px;
}

.input-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Input fields */
form input[type="text"],
form input[type="password"] {
    width: 100%; /* Make input fields full width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Button styling */
form button {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

form button:hover {
    background: #0056b3;
}
