.feedback {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 90;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 6vw;
    visibility: hidden;
    opacity: 0;
}

.feedback.open {
    opacity: 1;
    visibility: visible;
}

.feedback.success {
    background-color: #009436;
    color: #fff;
}

.feedback.error {
    background-color: #DC454A;
    color: #fff;
}

.feedback .message {
    text-transform: uppercase;
}

.feedback .close {
    cursor: pointer;
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: #ffffff94;
    backdrop-filter: blur(4px);
    color: #010101;
    width: 36px;
    aspect-ratio: 1/1;
    display: grid;
    place-content: center;
    border-radius: 4px;
    transition: .3s;
    font-size: 1.2rem;
    line-height: 1;
}

.feedback .close:hover {
    transform: scale(1.1);
}