

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(222,222, 222, 0.8);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 40vh;
    max-width: 40vw; /* You can adjust the width as needed */
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    font-size: 14px;
    color: #666;
}

button {
    background-color: #1C6DD0;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #155a8a;
}
