body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo img {
    width: 300px; /* Adjust the logo width as needed */
    margin-bottom: 20px;
}

.login-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px; /* Adjust the width as needed */
    margin: 0 auto; /* Center the form horizontally */
}

.login-form h2 {
    margin-bottom: 20px;
    color: #783389ff; /* Purple from Principal Palette */
}

input[type="text"],
input[type="password"] {
    width: 80%;
    padding: 12px; /* Adjust the padding as needed */
    margin-bottom: 15px; /* Adjust the margin as needed */
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center; /* Center the text in the input */
}

button {
    background-color: #00d2abff; /* Cyan from Secondary Palette */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0b7cfeff; /* Blue from Secondary Palette */
}
