.my-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;

    /* Background color of the form */
    margin: 0;
    font-family: Arial, sans-serif;
}

.form-container-fluid {
    background-color: #34604e;
}

.my-form .form-container {
    padding: 30px;
    border-radius: 10px;
    color: white;
    width: 100%;
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

.my-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.my-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.form-group label {
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 18px;
}

.my-form .form-group input,
.my-form .form-group select,
.my-form .form-group textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    padding: 5px;
}

.my-form .form-group input::placeholder,
.my-form .form-group textarea::placeholder {
    color: white;
    opacity: 0.7;
}

.my-form button {
    width: 50%;
    padding: 10px;
    background-color: white;
    color: #34604e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.my-form button:hover {
    background-color: #ddd;
}

/* Font Awesome for the icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
.subscribe-form .form-group input,
.subscribe-form .form-group select,
.subscribe-form .form-group textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid gray;
    outline: none;
    color: white;
    font-size: 16px;
    padding: 5px;
}

.subscribe-form {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.subscribe-form input {
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid rgb(255 255 255 / 50%);
    border-radius: 0 !important;
    height: 50px;
    padding: 10px 20px;
    margin-right: 5px;
    color: #fff;
    border-bottom: 2px solid #818181ad;
    font-size: 15px;
}

.subscribe-form button {
    height: 40px;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #34604e;
    border-radius: 10px;
    color: white;
    border: 1px solid #34604e !important;
    cursor: pointer;
    padding: 0 25px;
}

.subscribe-form button:hover{
    background: white;
    color: #34604e;
}
