body {
    background-color: #fff;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.login-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f0f0;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
}

input {
    width: 100%;
    padding: 8px; /* Reduce padding for smaller input */
    margin-bottom: 20px; /* Adjust margin for more compact form */
    border: 1px solid #ccc;
    border-radius: 25px; /* Increase border-radius for more rounded inputs */
    text-align: left;
    font-size: 0.9rem; /* Slightly smaller font size */
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #1089b9;
    outline: none;
}


.button-submit {
    width: 100%;
    padding: 12px;
    background-color: #1089b9;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease;
    font-size: 1rem;
}

.button-submit:hover {
    background-color: #096eb6;
    transform: translateY(-2px);
}

.button-submit:active {
    background-color: #085e89;
}

.login-container p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.login-container a {
    color: #1089b9;
    text-decoration: none;
    font-weight: bold;
}

.login-container a:hover {
    text-decoration: underline;
}

#alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 90vw;
    width: auto;
}
