body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #E0E0E0; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: #FFFFFF; /* White background */
    padding: 42px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 40%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: black;
    margin-bottom: 40px;
    display: block;
    font-size: 3em;
    margin-block-start: 0.17em;
    margin-block-end: 0.7em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-family: inherit;
    font-weight: bold;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container .icon {
    position: absolute;
    left: 30px; /* Adjusted position */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.input-container img {
    width: 20px;
    height: 20px;
}

.input-container input {
    width: calc(100% - 80px); /* Adjusted width for inputs */
    padding: 15px;
    padding-left: 70px; /* Adjusted padding-left */
    font-weight: bold;
    border-radius: 25px;
    border: none;
    background: #B3B4B4; /* Dimmed blue color */
    color: black; /* Black text */
    font-size: 16px;
}

.input-container input::placeholder {
    color: rgba(0, 0, 0, 0.7); /* Dimmed placeholder text */
}

button {
    width: calc(100% - 80px); /* Adjusted width for button */
    padding: 15px;
    border-radius: 25px;
    border: none;
    background-color: #027EF8; /* Dimmed blue color */
    color: black; /* Black text */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

button:hover {
    background-color: #0A5DAE; /
}

form {
    font-weight: bold; /* Make form content bold */
    text-align: center; /* Center align form content */
    background-color: #FFFFFF; /* White background */
}
