.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(255, 255, 255);
}

.login-form {
    background-color: #fff;
    padding: 30px;
    padding-top: 15px;
    width: 300px;
}

.login-form div {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

.login-form button {
    background-color: #0CA8D3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 70%;
    margin: 0 auto;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

.error {
    color: red;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .login-form {
        /* Make the form take up 90% of the screen width */
        width: 70%;
        padding: 10px;
    }

    .logo {
        /* Make the logo slightly larger on mobile */
        width: 200px;
    }

    .login-form input {
        /* Increase padding and font size for better readability and touch interaction */
        padding: 10px;
        font-size: 14px;
    }

    .login-form button {
        /* Make the button larger and wider for an easier tap target */
        padding: 10px 20px;
        width: 70%;
        font-size: 13px;
    }
}