body {
    overflow-y: auto;
}


.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor_flexbox {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, .2);
    width: fit-content;
}

#formContent {
    margin-top: 1rem;
}

.form_items {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.form_items div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

input[type="submit"] {
    margin: 0 auto;
}

.tiny {
    font-size: 0.5rem;
    margin: 0 auto;
}
.login-background-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.admin-card {
    background-color: whitesmoke;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
.login-logo {
    width: 200px;
    margin: 0 auto;
}
form>button {
    margin: 0 auto;
}
form input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent !important;
    background: #ffffff;
    background: linear-gradient(167deg,rgba(255, 255, 255, 1) 0%, rgba(126, 151, 196, 1) 100%);
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.btn-login {
    width: 100%;
}
