:root {
    --corPost: #B7FF6E;
    --corGet: #87D3FF;
    --pallet-white: #ffff;
    --pallet-pastel-white: #ede9dd;
    --pallet-blue: #243757;
    --pallet-blue-pastel: #3a5f6f;
    --pallet-pastel-light: #dad5b7;
    --pallet-pastel-medium: #c2b79b;
    --pallet-pastel-dark: #665e52;
    --pallet-pastel-red: #ef5350;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-login {
    width: 100%;
    height: 100vh;
    background: var(--pallet-blue);
    padding-top: 200px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section-login h1{
    color: var(--pallet-white);
    z-index: 10000000;
    margin-bottom: 20px;
}

.section-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#0047D1, #71A1FF);
    clip-path: circle(10% at 63% 58%);
}

.section-login::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#0047D1, #71A1FF);
    clip-path: circle(12% at 35% 20%);
}

.Login {
    position: relative;
    width: 400px;
    height: 400px;
    padding: 20px 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.Login form {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.Login form {
    color: red;
}

.inputGroup {
    margin: 0;
    width: 100%;
    position: relative;
}

.inputGroup input {
    padding: 20px;
    outline: none;
    border: 2px solid rgb(239, 239, 239);
    background-color: transparent;
    border-radius: 10px;
    width: 100%;
    color: #ffff;
}

.inputGroup label {
    font-size: 100%;
    position: absolute;
    left: 0;
    top: 10px;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: #ffff;
}

.inputGroup :is(input:focus, input:valid)~label {
    transform: translateY(-120%) scale(.9);
    margin: 0em;
    margin-left: 0.3em;
    padding: 0.4em;
    background: none;
}

.inputGroup :is(input:focus, input:valid) {
    border-color: rgb(200, 200, 200);
    box-shadow: -3px -1px 20px rgb(200, 200, 200);
}

.Login form button {
    width: 100%;
    padding: 15px 30px;
    border-radius: 10px;
    border: 0;
    color: var(--pallet-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    cursor: pointer;
}

.active {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    background: var(--pallet-pastel-red);
    color: var(--pallet-white);
    border: 0;
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}