/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Form Styles */
input {
    margin-bottom: 10px;
    padding: 8px;
    width: 250px;
    box-sizing: border-box;
}

#loginButton {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#loginButton:hover {
    background-color: #2980b9;
}
