body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    height: 70%;
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 1rem));
    gap: 2rem;
    max-width: 960px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.left-panel {
    background-color: rgba(121, 106, 238, 0.9);
    color: white;
    padding: 2rem;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
}

.right-panel {
    padding: 2rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 100%;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

button {
    padding: 1rem;
    background-color: #796AEE;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0078ba; /* No need to change the hover effect */
}

a {
    color: #0078ba;
    text-decoration: underline;
    margin-top: 1rem;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 1rem;
    text-align: center;
}
