.form {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.title {
    font-size: 28px;
    color: #fdff00;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #fdff00;
}

.title::before {
    width: 18px;
    height: 18px;
    background-color: #fdff00;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.message,
.signin {
    color: white;
    font-size: 14px;
}

.signin {
    text-align: center;
}

.signin a {
    color: #1d1b2f;
}

.signin a:hover {
    text-decoration: underline #1d1b2f;
}

.flex {
    display: flex;
    width: 100%;
    gap: 6px;
    justify-content: flex-start;
}

.form label {
    position: relative;
}

.form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
}

.form label .input + span {
    position: absolute;
    right: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid + span {
    color: green;
}

.submit {
    border: none;
    outline: none;
    background-color: #1d1b2f;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: 0.3s ease;
}

.submit:hover {
    background-color: #3a335e;
}

.cardl {
    position: relative;
    height: auto;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    padding: 4px;
    gap: 12px;
    border-radius: 8px;
    margin: auto;
    width: 320px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cardl::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -5px;
    right: -5px;
    margin: auto;
    height: 480px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #ff0056 0%, #00327c 100%);
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cardl::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #ff0056 0%, #00327c 100%);
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
}

.headingl {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
}

.cardl p:not(.heading) {
    font-size: 14px;
}

.cardl p:last-child {
    color: #e81cff;
    font-weight: 600;
}

.cardl:hover::after {
    filter: blur(30px);
}

.cardl:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }
    to {
        transform: scale(1.8);
        opacity: 0;
    }
}
