body {
    background-color: var(--black2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    padding: 10% 15px;
    gap: 10%;
}

body .admin-button,
body .back-button {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: var(--black3);
    padding: 5px 10px;
    font-size: 16px;
    color: var(--text);
    border-radius: 5px;
    text-decoration: none;
}
body .admin-button:hover,
body .back-button:hover {
    background-color: var(--black1);
}

body .back-button {
    left: 15px;
    right: unset;
}

body .account-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    color: var(--text);
    max-width: 100%;
    width: 100%;
}

body .account-infos h1 {
    margin-bottom: 40px;
}

body .account-infos p {
    max-width: 700px;
    text-align: center;
}

body .account-infos a {
    background-color: var(--black1);
    padding: 8px 12px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 30px;
    color: var(--text);
    border-radius: 5px;
    font-weight: bold;
}
body .account-infos a:hover {
    background-color: var(--black3);
}

body .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

body .top h1 {
    font-size: 32px;
}

body .top p {
    font-size: 18px;
    max-width: 700px;
    text-align: center;
}

body .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    color: var(--text);
    max-width: 100%;
    width: 100%;
}

body .container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: var(--black1);
    max-width: 364px;
    width: 100%;
}

body .container form label {
    margin-top: 5px;
}

body .container form input {
    background-color: var(--black2);
    border-radius: 5px;
    padding: 10px;
    border: none;
    color: var(--text);
}

body .container form button {
    background-color: var(--black3);
    border-radius: 5px;
    padding: 8px 10px;
    border: none;
    font-size: 16px;
    margin-top: 30px;
    color: var(--text);
    font-weight: bold;
}
body .container form button:hover {
    background-color: var(--black2);
}

body .container form .forgot-link {
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
}

body .container p.bottom-link {
    color: var(--text);
}

/* responsive */
@media (max-width: 550px) {
    body .top h1 {
        font-size: 28px;
    }

    body .top p {
        font-size: 16px;
    }

    body .container p.bottom-link {
        font-size: 15px;
    }

    body .account-infos {
        font-size: 16px;
    }

    body .account-infos h1 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 40px;
    }
}