* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    background: #151515;
    max-width: 100vw;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(90deg, #181b43, #3a2854);
    background-size: 120%;
    animation: bg-anim 5s ease-in-out infinite alternate;
}

.feedback-container {
    justify-content: center;
    position: fixed;
    height: 100vh;
    width: 640px;
    max-width: 100vw;
    bottom: 0;
    right: 0;
    left: 0;
    transition: bottom .3s ease;
    margin: auto;
    z-index: 22;
    display: flex;
    flex-direction: column;
    padding: 15px;
    row-gap: 10px;
    align-items: flex-end;
}

.close-fb-c {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff31;
}

.close-fb-c:hover {
    color: #ffffff57;
}

.close-fb-c:active {
    color: #ffffff81;
}

.close-fb-c svg {
    width: 100%;
    height: 100%;
}
.title {
    color: white;
    width: 100%;
    text-align: center;
}
option {
    background-color: #1a1a1a;
    color: white;
}

label {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-left: 10px;
    margin-top: 20px;
    width: 100%;
    padding-left: 10px;
}

label[for="tarea"] {
    margin-top: 0;
}

select {
    color: white;
    font-size: 14px;
    background: #2727274f;
    border: 1px solid #ffffff1b;
    border-radius: 8px;
    padding: 5px 12px;
    outline: none;
    width: 100%;
}

select:focus {
    border: 1px solid #ffffff33;
}

textarea {
    width: 100%;
    resize: vertical;
    min-height: 60px;
    background: #2727274f;
    border: 1px solid #ffffff1b;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 14px;
    outline: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

textarea:focus {
    border: 1px solid #ffffff33;
}

.submit-feedback {
    background: #fff;
    color: rgb(0, 0, 0);
    border: none;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 10px;
    max-width: fit-content;
    cursor: pointer;
    user-select: none;
}

.submit-feedback.disable,
.submit-feedback:disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #747474;
    color: #434343;
}






@keyframes bg-anim {
    0% {
        background-position-x: 0%;

    }
    100% {
        background-position-x: 100%;
    }
}









@media screen and (max-width: 450px) {
    select, textarea, .submit-feedback {
        font-size: 18px;
    }
    select {
        padding: 10px 12px;
        height: 50px;
    }
    .submit-feedback {
        width: 100%;
        max-width: none;
    }
}