*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: sans-serif;
}
a{
    display: inline-block;
    text-decoration: none;
}
.container{
    width: 1170px;
    margin: 0 auto;
}



body{
  height: 100vh;
  background-image: linear-gradient(to bottom right, #f3f4f6, #dbeafe);
  position: relative;
}

.reviewBox{
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid white;
    border-radius: 24px;
    padding: 32px;
    width: 45%;
    background: #FAFCFE;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.stars{
    display: flex;
    gap: 6px;
}
.stars i {
    color: #d1d5db;
    font-size: 20px;
    transition: .4s;
    padding: 20px 0;
    cursor: pointer;
}
.stars i.selected {
  color: gold;
}
.gold {
    color: gold;
    padding-right: 6px;
}
.stars i:hover{
    color: #facc15;
    transform: scale(1.16);
}
.reviewShow{
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 30px 0 10px;
    display: none;
    font-size: 18px;
}
textarea{
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 16px;
    resize: none;
    font-size: 18px;
    margin-top: 15px;
    transition: .4s;
}
textarea:focus{
    outline: none;
    box-shadow: 0 0 0 2px rgb(59, 131, 246);
}
textarea::placeholder{
    font-size: 18px;
    color: #9CA3AF;
}
.buttons{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
#reset {
    background: #e5e7eb;
    color: #374151;
    padding: 9px 22px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: .4s;
    border: none;
    font-size: 18px;
    font-family: system-ui;
    cursor: pointer;
}
#reset:hover{
    background: #d1d5db;
}

#submit{
    background: #2563eb;
    color: white;
    padding: 9px 22px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: .4s;
    border: none;
    font-size: 18px;
    font-family: system-ui;
    cursor: pointer;
}

#submit:hover{
    background: #1d4ed8;
}