/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
}

/* Header styles */
h1 {
    font-size: 24px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0;
}

/* Form styles */
form {
    background-color: #fff;
    border: 3px solid #D4B269;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Input styles */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2D2D2D;
}

input,
textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #D4B269;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-image: url('../img/star.png');
    background-size: contain;
}

.rating label:hover,
.rating label:hover ~ label {
    background-image: url('../img/star_checked.png');
}

.rating input:checked ~ label {
    background-image: url('../img/star_checked.png');
}

/* Button styles */
button {
    background-color: #D4B269;
    border: 2px solid #D4B269;
    color: #2D2D2D;
    padding: 10px 20px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.03em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #fff;
}

/* Logo Header styles */
.logo-header {
    width: 100vw;
    height: 15%;
    background: #2D2D2D;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-header img {
    height: 80%;
}

/* Form Content Styles */
.form-content {
    width: 80%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.content {
    width: 80%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.review-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    text-align: center;
    font-size: 2vmin;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 15px 20px;
    text-decoration: none;
    background: #D4B269;
    color: #2D2D2D;
    border-radius: 3px;
}

.btn:hover {
    background: #2D2D2D;
    color: #D4B269;
}

.ctn {
    text-align: center;
    font-size: 2vmin;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 15px 20px;
    text-decoration: none;
    background: #2D2D2D;
    color: #D4B269;
    border-radius: 3px;
}

.ctn:hover {
    background: #D4B269;
    color: #2D2D2D;
}

/* Responsive styles */
@media (max-width: 1000px) {
    .form-content {
        padding: 20px 0;
    }
}

@media (max-width: 600px) {
    .btn,
    .ctn {
        font-size: 2.5vmin;
    }
}

@media (max-width: 500px) {
    .btn,
    .ctn {
        font-size: 2.8vmin;
    }
}

@media (max-width: 350px) {
    .btn,
    .ctn {
        font-size: 3vmin;
    }
}