﻿#main {
    margin-top: -50px !important;
}

#section-email {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.form-title {
    color: #f19385;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 100px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 750px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

.submitButton {
    background-color: #e07465;
    color: white;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submitButton:hover {
    background-color: #f19385;
}

.submitButton:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.glyphicon-ok {
    top: 36px;
    right: 10px;
}

#EmailSubmitted {
    width: fit-content;
    margin: 0 auto;
    display: none;
    background-color: #8dc8b6;
    border-color: #8dc8b6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btnSubmitted {
    background-color: white;
    color: black;
    border: 2px solid #8DC8B6;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
    display: inline-block;
    margin: 10px 0;
}

.btnSubmitted:hover {
    background-color: #f7fcfb;
    color: black;
    border-color: #8DC8B6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}


@media (max-width: 767px) {
    .form-container {
        width: 95%;
        min-width: unset;
        padding: 10px;
        margin-bottom:10px;
    }

    #EmailSubmitted {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .btnSubmitted {
        padding: 5px 10px; /* Smaller padding */
        font-size: 14px; /* Smaller font size */
        border: 1px solid #8DC8B6; /* Thinner border */
        margin: 5px 0; /* Smaller margin */
    }
}