body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: white;
}

#show-password-icon {
    width: 40px;
    height: auto;
}

#show-password-icon:hover {
    filter: brightness(200%);
}

.login-container, .create-user-container {
    text-align: center;
    padding: 2em;
}

.title-image {
    max-width: 30%;
    height: auto;
}

.purple {
    color: #9b26b6;
}

.dark-blue {
    color: #0e1053;
}

.login-form, .create-user-form {
    display: flex;
    flex-direction: column;
    background: #d1d2f7;
    border-radius: 20px;
    padding: 20px;
    width: 30%;
    margin: 70px auto 0;
}

.login-btn {
    background: #1e22aa;
    color: white;
    border: none;
    padding: 1em;
    margin: 20px auto 1em;
    border-radius: 20px;
    cursor: pointer;
    width: 60%;
}

.create-account-btn {
    background: #9b26b6;
    color: white;
    border: none;
    padding: 1em;
    margin: 0 auto 1em;
    border-radius: 20px;
    cursor: pointer;
    width: 60%;
}

.login-btn:hover {
    filter: brightness(120%);
}

.create-account-btn:hover {
    filter: brightness(120%);
}

.login-form input, .create-user-form input {
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 20px;
    border: 1px solid #ddd;
    width: calc(100% - 6em);
}

.input-field {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.toggle-password {
    position: absolute;
    right: 40px;
    top: 5px;
    cursor: pointer;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1em;
}

footer img {
    height: 50px;
    float: right;
    margin-right: 50px;
}

.toast {
    visibility: hidden;
    max-width: 500px;
    height: auto;
    line-height: 1.5;
    background-color: red;
    color: #f1f1f1;
    text-align: center;
    border-radius: 10px;
    padding: 15px;

    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;

    transform: translateX(-50%);
}

.toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}


