form{
    width: 100%;
    /* background-color: rgb(255, 125, 125); */
    color: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3em;
}
.contact-us-button{
    color: black;
}
.name-email{
    display: flex;
    flex-flow: row;
    gap: 16px;
}
.sec{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    overflow: visible;
}

.cds{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 8px;
    height: min-content;
}
.star-rating {
    direction: rtl; /* Right-to-left for proper star order */
    /* display: inline-flex; */
    font-size: 1.3rem;
    user-select: none;
}

.star-rating input {
    display: none; /* Hide radio inputs */
}

.star-rating label {
    color: #ffffff;
    cursor: pointer;
    transition: color .2s cubic-bezier(.44,0,.56,1) 0s;
}

/* Highlight on hover */
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: hsl(270, 100%, 50%);
}

/* Highlight selected stars */
.star-rating input:checked ~ label {
    color: hsl(270, 100%, 50%);
}


.sec input{
    /* width: 400px; */
    height: 40px;
    border-radius: 1px;
    padding: 12px;
    background-color: hsl(0, 0%, 4%);
    font-size: 14px;
    color: white;
    line-height: 1.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
    outline: 0px solid hsla(0, 0%, 16%);
    border: 1px solid hsl(0, 0%, 8%);
    transition: color .4s cubic-bezier(.44,0,.56,1) 0s;
    transition: all linear 100ms;
}
.sec input:focus{
    border: 1px solid #d400ff;
}
.sec input:hover{
    border: 1px solid hsla(0, 0%, 16%);
}

.sec textarea{
    border-radius: 1px;
    padding: 12px;
    background-color: hsl(0, 0%, 4%);
    outline: none;
    font-size: 14px;
    min-height: 180px;
    color: white;
    line-height: 1.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: outline linear 100ms;
    border: 1px solid hsl(0, 0%, 8%);
    transition: all linear 100ms;
}
.sec textarea:focus{
    border: 1px solid hsl(270, 100%, 50%);
}
.sec textarea:hover{
    border: 1px solid hsla(0, 0%, 16%);
}
form button{
    background-color: white;
    height: 40px;
    width: 50%;
    padding: 0 20px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    border-radius: 2px;
}

@media (max-width:809.98px){
    .name-email{
        flex-flow: column;
    } 
}

