/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Switzer-Variable";
}

body {
    background-color: #f8fafc;
    color: #1f2937;
    padding: 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-size: 16px;
}

.auth-buttons {
    display: flex;
}

.auth-buttons a {
    text-decoration: none;
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.auth-buttons .login {
    color: #1f2937;
}

.auth-buttons .signup {
    color: #fff;
    background-color: #3b82f6;
}

.content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.left {
    max-width: 600px;
}

.left h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.left p {
    font-size: 18px;
    color: #6b7280;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f97316;
    color: #fff;
    /* border-radius: 16px; */
    font-size: 14px;
    margin-bottom: 15px;
}

.badge span {
    color: #9ca3af;
    margin-left: 10px;
}

.rate-form {
    background-color: #fff;
    padding: 20px;
    /* border-radius: 8px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* max-width: 400px; */
}


.outerDivRate {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .outerDivRate {
        width: 40%;
    }
}

.rate-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.rate-form select,
.rate-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 16px;
}



.rate-form button {
    width: 100%;
    padding: 12px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.rate-form button:hover {
    background-color: #2563eb;
}
