body {
    font-family: Arial, sans-serif;
    background-color: #cad3ed; /* Softer background color */
    display: flex;
    justify-content: center; /* Center the items horizontally */
    align-items: center;
    height: 100vh;
    margin: 0;
}



.left, .container {
    background: #e9f1f5; /* Lighter background for the form */
    padding: 40px; /* More padding for better spacing */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px; 
    margin: 0 30px; /* Space between the sections */
	padding-right:40px;
	padding-left :20px;
}

h2 {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 15px 0 5px; /* More space above labels */
    font-weight: bold; /* Bold labels for emphasis */
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px; /* Increased padding for better usability */
    margin-bottom: 15px; /* Increased space below inputs */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px; /* Slightly larger font size */
	
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #007bff; /* Primary button color */
    color: white;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

p {
    margin-top: 25px; /* Increased top margin */
    text-align: center;
}

a {
    color: #007bff; /* Link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}