/* New Login */
.loginPage {
    font-family: 'sans-serif', Roboto;
    background-color: #e5e5f7;
    background-image: radial-gradient(#000000 0.5px, transparent 0.5px), radial-gradient(#000000 0.5px, #f2f2f2 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    display: flex;
    min-height: 100vh;
}

body::-webkit-scrollbar {
    width: 7px;
}

body::-webkit-scrollbar-thumb {
    background: #3866f2;
    border-radius: 20px;
}

.circle {
    background-position: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 0 0 100% 0;
    background-image: url('./../images/header_003.jpg');
    overflow: hidden;
}

.mask {
    position: absolute;
    background-position: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background-image: linear-gradient(310deg, #000, #000);
}

.form {
    background-color: white;
    margin: auto;
    width: 90%;
    max-width: 600px;
    padding: 2.5em 2.5em;
    border-radius: 10px;
    box-shadow: 0 5px 10px -5px black;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.977); */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12.2px);
    -webkit-backdrop-filter: blur(12.2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 1s;
}

/* .form:hover{ transform:scale(1.02); transition:1s;} */
.form__title {
    font-size: 2rem;
    margin-bottom: 0.5em;
}

.form__paragraph {
    font-weight: 300;
}

.form__link {
    font-weight: 400;
    color: #000;
}

.form__container {
    margin-top: 3em;
    display: grid;
    gap: 1.5em;
}

.form__group {
    position: relative;
    color: #57577e;
}

.form__input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d2d6da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.form__input:not(:placeholder-shown) {
    color: #4d4646;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    transform: translateY(-12px) scale(0.7);
    transform-origin: left top;
    color: #3866f2;
}

.form__label {
    color: var(--color);
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 5px;
    transform: translateY(10px);
    transition: transform 0.5s, color 0.3s;
}

.form__submit {
    background: #000000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 0.6em 0;
    border: none;
    border-radius: 0.5em;
    border: 2px solid black;
}

.form__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #3866f2;
    transform: scale(0);
    transform: left bottom;
    transition: transform 0.4s;
}

.form__input:focus ~ .form__line,
.form__input:not(:placeholder-shown) ~ .form__line {
    transform: scale(1);
}

@media (max-width: 425px) {
    .form__title {
        font-size: 1.8rem;
    }
}

.Creador {
    position: fixed;
    top: 10px;
    display: flex;
    left: 80%;
    justify-content: center;
    width: 70px;
    border-radius: 5px;
    padding: 5px;
    background-color: #3866f2;
}

.Creador a {
    color: #fff;
    font-size: 12px;
}

.inputLabel {
    color: #000000;
}

.errormessage {
    color: red;
    font-size: 1.5rem;
}

/* END New Login */
