.form {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.title {
    font-size: 28px;
    color: #e14141;
    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: #e14141;
}

.title::before {
    width: 18px;
    height: 18px;
    background-color: #e14141;
}

.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: #e14141;
}

.signin a:hover {
    text-decoration: underline #e14141;
}

.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: #e14141;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: 0.3s ease;
}

.submit:hover {
    background-color: rgb(56, 90, 194);
}

.delete {
    border: none;
    outline: none;
    background-color: #e14141;
    padding: 6px;
    border-radius: 10px;
    color: #fff;
    font-size: 9px;
    transform: 0.3s ease;
}

.delete:hover {
    background-color: #810000;
}

.notification-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 7px;
}

.notification-dropdown {
    display: none;
    position: fixed;
    top: 40px;
    background-color: white;
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    border: 1px solid #ccc;
    text-align: right;
    color: black;
    direction: rtl;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.notification-item:hover {
    background-color: #f9f9f9;
}

.notification-wrapper:hover .notification-dropdown {
    display: block;
}

.button1 {
    border: none;
    outline: none;
    background-color: #3cae77;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: 0.3s ease;
}

.button1:hover {
    background-color: #00816e;
}

.cardl {
    position: relative;
    height: auto;
    background-color: rgb(255, 255, 255);
    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: 420px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 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, #fc00ff 0%, #00dbde 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;
    }
}