body {
    font-family: Arial, sans-serif;
    background-color: #cad3ed;;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.left, .container {
    background: #e9f1f5;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 700px; /* Combined max-width */
    margin: 0 30px;
}
.left p {
    color: black;
    text-decoration: none; /* No underline */
   
   
    font-family: Arial, sans-serif; /* Clean and modern font */
    font-size: 16px; /* Standard readable size */
    line-height: 0.5; /* Improved readability */
}
   
.container {
    max-width: 600px;
}

h2 {
    margin-bottom: 25px;
    color: #003366;
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 40px);
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

p {
    margin-top: 25px;
    text-align: center;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    top: -45px;
    left: 90%;
    transform: translateX(-50%);
}

button i {
    font-size: 18px;
    color: #333;
}
 