body, div, form, input, select, p, textarea {
    padding: 0;
    margin: 0;
    outline: none;
    font-size: 16px;
    color: #667;
    line-height: 22px;
    font-family: "Montserrat", sans-serif !important;
    pointer-events: auto;
}

.testbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    padding: 3px;
}

form {
    margin: auto;
    width: 50%;
    padding: 25px;
    background: rgba(250, 250, 250, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}

select, textarea {
    border: 1px solid #ccc;
    border-radius: 15px;
}

.Styled select, input, textarea {
    border: 1px solid #ccc;
    border-radius: 15px;
}

input:hover, select:hover, textarea:hover {
    outline: none;
    border: 2px solid #9C6; /* #ab1db0 */
}

input {
    width: 350px;
    height: 50px;
    padding: 5px;
    border: 1px solid #ccc;
}

select {
    width: 350px;
    height: 50px;
    padding: 7px 0;
    /*background: transparent;*/
}

textarea {
    width: 350px;
    height: 80px;
}

.item {
    position: relative;
    margin: 10px 0;
}

.item i {
    right: 2%;
    top: 30px;
    z-index: 1;
}

.btn-block {
    margin-top: 20px;
    text-align: center;
}

button {
    width: 350px;
    height: 50px;
    padding: 10px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 15px;
    background-color: #9C6; /* #ab1db0 */
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #7A4; /* #ab1db0 */
}

.button-tighter {
    height: 50px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
    /*padding: 10px;*/
    background-color: #9C6; /* #ab1db0 */
    color: #FFF;
    border-radius: 15px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    /*margin: 5px 5px;*/
    width: 90%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent overflow */
}

.button-tighter:hover {
    background-color: #7A4; /* #ab1db0 */
}

label {
    font-weight: bolder;
}

/* Change hover and focus border color */
select:hover, select:focus {
    border: 2px solid #9C6 !important;
    outline: none;
    box-shadow: 0 0 5px rgba(153, 204, 119, 0.5);
}

/* Change selected option text color */
select option:checked {
    background-color: #9C6 !important;
    color: white !important;
}

.choices__list--dropdown .choices__item--highlighted {
    background-color: #9C6 !important;
    color: white !important;
}

@media (max-width: 768px) {
    form {
        width: 80%;
        padding: 20px;
        background: #fff;
        box-shadow: 0 2px 5px #ccc;
        margin: auto auto 40px;
        border-radius: 15px;
    }

    input {
        width: 80%;
        height: 50px;
        padding: 5px;
    }

    select {
        width: 80%;
        height: 50px;
        padding: 7px 0;
        background: transparent;
    }

    textarea {
        width: 80%;
        height: 80px;
    }

    button {
        width: 80%;
    }
}

.basic_input input {
    width: 65%;
    height: 40px;
    padding: 5px;
    background: transparent;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer: remove fixed margin-top for stickiness; add padding instead if needed */
.site-footer {
    margin-top: auto; /* pushes footer to the bottom */
    background: #e9eef3;
    color: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.site-footer .footer-links a {
    text-decoration: none;
}

.site-footer .footer-links .sep {
    opacity: .6;
    margin: 0 .5rem;
}
