.admin-text {
    text-align: center;
}
.login-form {
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.login-form-item {
    margin: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.login-form label {
    margin-bottom: 1.2rem;
}
.login-form-item input {
    padding: 0.6rem 1.2rem;
}
.login-form-btn {
    width: 280px;
    padding: 1.2rem;
    margin: 1.2rem auto 6.8rem;
}
.login-form-btn:hover {
    background-color: #0033A0;
    color: white;
}
.card-login {
    margin: 6.4rem auto;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
.card-header-login, .card-body-login {
    margin: 0 auto;
}
.login-form-item {
    margin-bottom: 1.6rem;
}
.button-edit-fan, .button-delete-fan {
    width: 140px;
    padding: 0.3rem 0;
    margin: 0 auto;
    border-radius: 5px;
}
.button-edit-fan {
    background-color: rgb(54, 194, 54);
}
.button-delete-fan {
    background-color: red;
    color: white;
    transition: all 0.2s ease-in-out;
}v
.button-edit-fan:hover {
    background-color: rgb(133, 224, 133);
    cursor: pointer;
}
.button-delete-fan:hover {
    background-color: rgb(255, 105, 105);
    text-decoration: underline;
    cursor: pointer;
    color: black;
}
.button-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}
.button-edit-validate {
    margin: 0;
    padding: 0.6rem;
    background-color: rgb(54, 194, 54);
    border-radius: 5px;
    transition: all 0.2s ease-in-out
}
.button-edit-validate:hover {
    background-color: rgb(133, 224, 133);
    cursor: pointer;
    text-decoration: underline;
}
.button-back {
    text-decoration: none;
    padding: 0.6rem;
    background-color: rgb(177, 177, 177);
    border-radius: 5px;
    color: black;
    transition: all 0.2s ease-in-out
}
.button-back:hover {
    background-color: rgb(228, 228, 228);
    text-decoration: underline;
}
.button-back-edit {
    text-decoration: none;
    text-align: center;
    display: block;
    width: 420px;
    margin: 0 auto 3.2rem;
    padding: 0.6rem 0;
    background-color: green;
    border: 1px solid grey;
    border-radius: 5px;
    color: white;
    transition: all 0.2s ease-in-out
}
.button-back-edit:hover {
    background-color: rgb(74, 190, 74);
    text-decoration: underline;
}
.button-validate-edit {
    display: block;
    width: 420px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out
}
.button-validate-edit:hover {
    cursor: pointer;
    background-color: #aeaeb3;
    color: white;
    text-decoration: underline;
}
.button-new-fan {
    text-align: center;
    border-radius: 5px;
    display: block;
    width: 250px;
    margin: 1.8rem auto 0;
    padding: 0.6rem;
    text-decoration: none;
    background-color: rgb(54, 194, 54);
    transition: all 0.2s ease-in-out;
}
.button-new-fan:hover {
    background-color: rgb(133, 224, 133);
    cursor: pointer;
    text-decoration: underline;
}
