body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}

.container {
    max-width: 800px;
    margin: 20px 0;
    width: 94%;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.overlay-text {
    padding: 0 15px;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
}

form {
    display: grid;
    gap: 10px;
    padding: 0 15px 15px 15px;
}

form div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    font-size: 11px;
    color: #555;
    padding: 0 0 5px 0;
}

input,
textarea,
.static-value {
    flex: 2;
    height: 40px;
    min-height: 40px;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    font-size: 14px;
    min-width: 1px;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

input,
textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
}

textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
}

input:focus,
textarea:focus {
    border: 2px solid #85a0f2;
    outline: none;
}

button {
    background-color: #031f86;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0d2f9b;
}

@media only screen and (max-width: 600px) {
    form {
        grid-template-columns: 1fr;
    }
}

.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    width: 82%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.close-button {
    background: #031f86;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.loading-icon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loading-icon-inner {
    border: 4px solid #4d5cd1;
    border-radius: 50%;
    border-top: 4px solid #8795ff;
    width: 40px;
    height: 40px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.email-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
}


.svg-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.svg-container img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    fill: none;
    stroke-width: 1.5;
    stroke: #6d6d6d;
    width: 1rem;
    height: 1rem;
}

.svg-container input,
.svg-container textarea {
    padding-left: 2.5rem;
}

.svg-container:has(textarea) img {
    top: 14px;
    transform: none;
}

.svg-container span {
    padding-left: 2.5rem;
}
