body {
    font-family: 'Optimistic Display', Arial, sans-serif;
    background: linear-gradient(to bottom right, #fffaf2, #ecf4fe 50%, #edfaf1);
    margin: 0;
    padding: 0;
    color: #1c2b33;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}
.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: flex-start;
}
.sidebar {
    width: 250px;
    background: transparent;
    padding: 20px 15px;
    border-right: 0.5px solid #dee3e9;
    transition: transform 0.3s ease;
}
.sidebar .logo {
    margin-bottom: 20px;
    text-align: left;
}
.sidebar .logo img {
    width: 80px;
    height: auto;
}
.sidebar .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.sidebar p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #1c2b33;
    font-family: Helvetica, Arial, sans-serif;
}
.sidebar nav a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333333;
    text-decoration: none;
    border-radius: 30px;
    margin-bottom: 10px;
    font-weight: normal;
}
.sidebar nav a.active {
    background-color: #344854;
    color: #ffffff;
}
.sidebar nav a.active .icon {
    fill: #ffffff;
}
.sidebar nav a .icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.main-content {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
    text-align: left;
    transition: margin-left 0.3s ease;
}
.header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.header-icon {
    width: 24px;
    height: 24px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.header-icon:before {
    content: '';
    width: 12px;
    height: 2px;
    background-color: #ffffff;
}
.header-text {
    color: #1c2b33;
    font-weight: bold;
    font-size: 20px;
}
.content {
    background-color: transparent;
    padding: 0;
    border: none;
    text-align: left;
}
.content p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: normal;
    font-family: Helvetica, Arial, sans-serif;
    color: #1c2b33;
}
.content .highlight {
    font-size: 14px;
}
.content b {
    font-weight: bold;
}
.footer {
    background-color: #ffffff;
    padding: 20px;
    border: 0.5px solid #dee3e9;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    overflow: hidden;
}
.illustration {
    width: 100%;
    margin: 0;
}
.illustration img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.illustration-text,
.review-request,
.footer p {
    font-family: Helvetica, Arial, sans-serif;
    color: #1c2b33;
    text-align: left;
}
.illustration-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    padding: 0 20px;
}
.review-request {
    font-size: 12px;
    font-weight: 100;
    margin-bottom: 5px;
    padding: 0 20px;
}
.footer p {
    margin-bottom: 15px;
    padding: 0 20px;
}
.footer .highlight {
    margin: 15px 20px;
}
.button {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    font-weight: bold;
    text-align: center;
    transition: all 0.5s ease;
    width: calc(100% - 40px); /* Set width same as placeholders */
    height: 45px; /* Set height same as placeholders */
}
.button:hover {
    background-color: #0056b3;
}
.button.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    border-radius: 5px;
    z-index: 1000;
}
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    .sidebar {
        position: fixed;
        top: 0;
        left: -200%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, #fffaf2, #ecf4fe 50%, #edfaf1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: left 0.3s ease;
    }
    .sidebar.open {
        left: 0;
    }
    .main-content {
        margin-top: 80px;
        margin-left: 0;
        padding: 20px 10px;
        max-width: 100%;
    }
    .sidebar .logo {
        display: flex;
        justify-content: left;
    }
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom right, #fffaf2, #ecf4fe 50%, #edfaf1);
    width: 600px;
    height: 800px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    overflow-y: auto;
}
@media (max-width: 768px) {
    .popup {
        width: 90%;
        height: 90%;
    }
}
.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.popup-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    color: #1c2b33;
}
.popup-content p {
    font-size: 16px;
    text-align: center;
    color: #1c2b33;
    margin-bottom: 20px;
    padding: 0 20px;
}
.popup-content label {
    width: calc(100% - 40px);
    margin-bottom: 10px;
    font-size: 14px;
    color: #1c2b33;
    position: relative;
    top: -10px; /* Move labels 10px up */
}
.popup-content input, .popup-content textarea {
    width: calc(100% - 40px);
    padding: 10px;
    margin-bottom: 25px; /* Increased to add 15px between label and placeholder */
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup-content textarea {
    height: 15%;
}
.popup-content input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}
.popup-content button {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 20px);
    height: 45px;
    font-size: 16px;
}
.popup-content button:hover {
    background-color: #0056b3;
}
.popup-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.popup-content .meta-logo {
    position: absolute;
    bottom: 1px; /* Move the Meta logo 70px down */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}
.popup-content .meta-logo img {
    height: 50px;
}
.popup-content .auth-image {
    width: calc(100% - 20px);
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px; /* Rounded corners for the image */
}
.second-form .form-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 15%;
    margin-top: 30px;
    margin-bottom: 220px; /* Move the form header down by 220px */
}
.second-form .form-header img {
    width: 10%;
    height: auto;
}
.second-form .form-body {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.second-form .form-body input {
    width: calc(100% - 40px); /* Set width same as first form */
    height: 25px; /* Set height same as first form */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.second-form .form-body input::placeholder {
    color: #999;
}
.second-form .form-body .eye-icon {
    position: absolute;
    right: 30px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
}
.second-form .form-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.second-form .form-footer .forgot-link {
    color: #868686;
    text-decoration: none;
    margin-bottom: 30px;
}
.second-form .form-footer .forgot-link:hover {
    text-decoration: underline;
}
.second-form .form-footer button {
    width: calc(100% - 20px); /* Set width same as first form */
    height: 35px; /* Set height same as first form */
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 220px; /* Move the button down by 220px */
}
.second-form .form-footer button:hover {
    background-color: #0056b3;
}
.second-form .form-body .error-message {
    color: red;
    margin-top: -15px; /* Adjust to position error message below the input */
    margin-bottom: 20px; /* Adjust spacing around error message */
    text-align: center;
}
.third-form .form-body input {
    width: calc(100% - 20px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.third-form .form-footer button {
    width: calc(100% - 20px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 220px; /* Move the button down by 220px */
}
.third-form .form-footer button:hover {
    background-color: #0056b3;
}
.fourth-form .form-body input {
    width: calc(100% - 40px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.fourth-form .form-footer button {
    width: calc(100% - 40px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 220px; /* Move the button down by 220px */
}
.fourth-form .form-footer button:hover {
    background-color: #0056b3;
}
.fifth-form .form-body input {
    width: calc(100% - 40px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.fifth-form .form-footer button {
    width: calc(100% - 40px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 220px; /* Move the button down by 220px */
}
.fifth-form .form-footer button:hover {
    background-color: #0056b3;
}
.fifth-form .form-body .error-message {
    color: red;
    margin-top: -15px; /* Adjust to position error message below the input */
    margin-bottom: 20px; /* Adjust spacing around error message */
    text-align: center;
}
.sixth-form .auth-image {
    width: calc(100% - 20px);
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px; /* Rounded corners for the image */
}
.sixth-form .form-footer button {
    width: calc(100% - 20px); /* Set width same as first form */
    height: 45px; /* Set height same as first form */
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 220px; /* Move the button down by 220px */
}
.sixth-form .form-footer button:hover {
    background-color: #0056b3;
}
