html, body {
    width: 100%;
    height: 100%;
    background: linear-gradient(25deg, #e9a171, #98499a );
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#content_container {
    width: 90%; /* Adjust this width as per your requirement */
    max-width: 400px; /* Set a maximum width for better readability */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Adjust background color and opacity */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#form_container {
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

#form_header_container {
    padding: 20px;
    background: #333;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

#form_header {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

#form_content_container {
    padding: 20px;
}

input {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #aaa;
}

#button_container {
    margin-top: 20px;
    text-align: center;
}

#button_container button {
    width: 150px;
    height: 40px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

#button_container button:hover {
    background: #555;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #8ac5bf;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#popup_content {
    position: relative;
    text-align: center;
    color: #333;
}

#popup_header {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}
