.emailForm {
    margin-top: 40px;
}

.emailForm h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #c8e6c9;
    font-weight: 400;
}

.formGroup {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.formGroup input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.formGroup input::placeholder {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.formGroup input:focus {
    border-color: #66bb6a;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(102, 187, 106, 0.3);
}

.formGroup input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.formGroup button {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.formGroup button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.formGroup button:active:not(:disabled) {
    transform: translateY(0);
}

.formGroup button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    animation: fadeInUp 0.5s ease-out;
}

.message.show {
    display: block;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #c8e6c9;
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #ffcdd2;
}

@media (max-width: 768px) {
    .formGroup {
        flex-direction: column;
    }

    .formGroup input,
    .formGroup button {
        width: 100%;
        min-width: auto;
    }
}

