.gradient-text {
        /* background: linear-gradient(90deg, #17121E, #740b20, #e91f49); */
        background: linear-gradient(90deg, #E91F49, #5AC6D1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.saybackdrop {
    /* background-color: lightblue;  */
    background: linear-gradient(90deg, #17121E, #740b20, #e91f49);
    /* background: linear-gradient(90deg, #17121E, #740b20, #e91f49); */
    
    background-size: cover;
    /* background-size: contain; */
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(105, 105, 105);
    padding: 20px;
    border-radius: 5px;
    height: 95vh;
}

label {
    @apply mt-2;
    font-weight: bold;
}

.say-form {
    max-width: 400px;
    margin: 0 auto;
}

.hide {
    display: none;
}



input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
input[type="password"],
select,
textarea {
    @apply mb-2;
    width: 100%;
    border: 1px solid #cccccc;
    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 6px;
    @apply focus:border-indigo-300;
    @apply focus:ring;
    @apply focus:ring-indigo-200;
    @apply focus:ring-opacity-50;
}

pre {
    @apply text-sm;
    @apply bg-gray-100;
    @apply p-1;
    @apply w-full;
}

.fieldset {
    @apply border;
    @apply border-2;
    @apply border-blue-200;
    @apply p-3;
    @apply text-sm;
    @apply hover:bg-gray-100;
}
