body {
    user-select: none;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.account-container {
    align-items: center;
    height: 100%;
    display: flex;
}

    .account-container .account-card {
        background: #f1f7fe;
        padding: 2em;
        border-radius: 30px;
        box-shadow: 0 0 2em #e6e9f9;
    }

    .account-container .account-content,
    .account-container .account-content form {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    .account-container .account-logo {
        margin-top: 1em;
        margin-bottom: 0.5em;
        text-align: center;
    }

        .account-container .account-logo img {
            width: 80%
        }

    .account-container .account-input {
        background: white;
        box-shadow: 0 0 2em #e6e9f9;
        padding: 1em;
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        border-radius: 20px;
        color: #4d4d4d;
    }

        .account-container .account-input input {
            outline: none;
            border: none;
            width: 100%;
        }

            .account-container .account-input input::placeholder {
                color: #000;
                font-size: 0.9em;
            }

        .account-container .account-input ion-icon {
            color: #000;
            margin-bottom: -0.2em;
        }

        .account-container .account-input .show-hide {
            margin-right: -5em;
        }

    .account-container .account-submit {
        padding: 1em;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        width: 100%;
    }

    .account-container .account-footer {
        display: flex;
        font-size: 0.7em;
        color: #5e5e5e;
        gap: 14em;
        padding-bottom: 5em;
    }

        .account-container .account-footer span {
            cursor: pointer;
        }

    .account-container a {
        text-decoration: none;
        color: inherit;
    }


button {
    cursor: pointer;
}
