body {
    font-family: Arial, sans-serif;
    background-color: azure;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid lightgray;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
    width: 380px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
}

input[type="email"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: lightblue;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: deepskyblue;;
}

.forgot-password-link {
    text-decoration: underline;
}

.create-account {
    margin-top: 0px;
    font-size: 12px;
}

.create-account a:link, a:visited {
    text-decoration: none;
    color: green;
}
