.subscribe-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form-input {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.subscribe-form-input input {
    padding: 12px 16px;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.subscribe-form-input input::placeholder {
    color: #999;
}

.subscribe-form-input input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.subscribe-form-buttons {
    display: flex;
    gap: 12px;
}

.subscribe-form-buttons button {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form-buttons .btn-secondary {
    background: transparent;
    color: #D4AF37;
}

.subscribe-form-buttons .btn-secondary:hover {
    background: #D4AF37;
    color: #000;
}

.subscribe-form-buttons .btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.subscribe-form-buttons .btn-primary:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

.subscribe-form-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.subscribe-message {
    display: none;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

.subscribe-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.subscribe-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .subscribe-form-buttons {
        flex-direction: column;
    }

    .subscribe-form-input input {
        padding: 10px 12px;
        font-size: 16px;
    }
}
