html {
    background-repeat: no-repeat;
    background-image: radial-gradient(50% 50% at 50% 50%, rgba(35, 190, 160, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    font-family: 'Titillium Web', sans-serif;
}

html, body {
    
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.main-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-div {
	display: flex;
	justify-content: center;
	margin-bottom: 20px !important;
	width: 50%;
	margin: 0 auto;
}

.logo {
    /*height: 100px;*/
    max-width: 100%;
}

.page-body {
    background-color: rgb(255, 255, 255);
    width: 100%;
    max-width: 1000px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 32px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.04), 0 16px 24px rgba(0, 0, 0, 0.04), 0 24px 32px rgba(0, 0, 0, 0.01);
    border-radius: 30px;
}

.page-container {
    display: flex;
    flex-direction: row;
    padding: 25px;
    gap: 25px;
}

.text-div {
    text-align: center;
    color: #252c32;
    font-weight: 100;
    margin-bottom: 20px;
}

.form-container {
    flex-grow: 1;
}

.product-pic {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.main-input-container {
    display: flex;
    flex-direction: row;
    padding-bottom: 25px;
}

.input1 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em;
}

.input-row {
    text-align: left;
}

.labelbox {
    width: auto;
    overflow: hidden;
    padding-bottom: 20px;
    padding-right: 10px;
    font-weight: bold;
}

.input1 input {
    width: 100%;
    max-width: 500px;
    height: 30px;
    border-radius: 5px;
    box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(150, 165, 165);
    text-transform: uppercase;
}

.input1 input:focus {
    outline: none;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.button-green {
    border: 0;
    line-height: 2.5;
    border-radius: 8px;
    text-align: center;
    background-color: rgb(35, 190, 160);
    color: white;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    border: none;
    outline: none;
    padding: 2px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-green:hover {
    background-color: rgb(28, 150, 125);
}

.button-green:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6), inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}

#message {
    text-align: center;
    font-weight: bold;
    color: red;
    margin-top: 20px;
}
#popupModal {
	background: #000c;
}
/*POPUP
#popupModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 400px;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
}
#popupModal .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
#popupModal .modal-content img {
    width: 100px;
    height: auto;
}
.close-btn {
    background-color: #e20c2e;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}*/
/* Responsive Design */
@media only screen and (max-width: 768px) {
    .page-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .product-pic {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .text-div {
        font-size: 0.9rem;
    }

    .button-green {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .input1 input {
        max-width: 100%;
    }
    .logo-div {
        /*margin-top: 60px;*/
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .page-body {
        padding: 20px;
    }

    .text-div {
        font-size: 0.8rem;
    }

    .button-green {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .input1 input {
        height: 25px;
    }
    /*.logo-div {
        margin-top: 60px;
    }*/
}